From 5eb41154d8aca6a9e109bc0a8a969cf962b34d36 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Thu, 16 Oct 2025 06:04:43 +0900 Subject: [PATCH] feat: add Claude Code plugin manifest Add .claude-plugin/plugin.json to enable this MCP server as a Claude Code plugin. This allows users to install and use chrome-devtools-mcp through Claude Code's plugin system. The plugin provides Chrome DevTools MCP server capabilities for browser automation, debugging, and performance analysis directly from Claude Code. --- .claude-plugin/plugin.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .claude-plugin/plugin.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 000000000..0f32522d5 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,11 @@ +{ + "name": "chrome-devtools-mcp", + "version": "latest", + "description": "Control and inspect a live Chrome browser through MCP - automate actions, debug, and analyze performance using Chrome DevTools", + "mcpServers": { + "chrome-devtools": { + "command": "npx", + "args": ["chrome-devtools-mcp@latest"] + } + } +} \ No newline at end of file