zen mcp for VS Code
io.github.sh6drack/zen-mcp
MCP server for Zen Browser automation via WebDriver BiDi
client:VS Code
transport:stdio
runtime:npm
Install zen mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zen-debug-port",
"description": "ZEN_DEBUG_PORT",
"password": true
}
],
"servers": {
"zen-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"zen-mcp"
],
"env": {
"ZEN_DEBUG_PORT": "${input:zen-debug-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs