devcdp for VS Code
io.github.dayananda-d/devcdp
Chrome DevTools for AI assistants: console, network, DOM, source maps, breakpoints, live variables.
client:VS Code
transport:stdio
runtime:npm
Install devcdp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "devcdp-chrome-path",
"description": "DEVCDP_CHROME_PATH",
"password": true
},
{
"type": "promptString",
"id": "devcdp-log-level",
"description": "DEVCDP_LOG_LEVEL",
"password": true
}
],
"servers": {
"devcdp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"devcdp"
],
"env": {
"DEVCDP_CHROME_PATH": "${input:devcdp-chrome-path}",
"DEVCDP_LOG_LEVEL": "${input:devcdp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs