-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathplugin.json
More file actions
20 lines (20 loc) · 835 Bytes
/
plugin.json
File metadata and controls
20 lines (20 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "chrome-devtools-mcp",
"version": "0.23.0",
"description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer",
"userConfig": {
"executablePath": {
"description": "Optional path to a custom Chrome executable. Useful when the system has multiple Chrome installations (e.g. point at the Chrome for Testing binary so the MCP-launched Chrome stays separate from the user's regular Chrome and can be scripted unambiguously by AppleScript / OS automation tools). Leave blank to use the auto-detected stable Chrome.",
"sensitive": false
}
},
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": [
"chrome-devtools-mcp@latest",
"--executablePath=${user_config.executablePath}"
]
}
}
}