browser gateway for VS Code
io.github.browser-gateway/browser-gateway
AI browser tools with Chrome CDP. Navigate, screenshot, interact. Multi-provider failover.
client:VS Code
transport:stdio
runtime:npm
Install browser gateway in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bg-token",
"description": "BG_TOKEN",
"password": true
}
],
"servers": {
"browser-gateway": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"browser-gateway"
],
"env": {
"BG_TOKEN": "${input:bg-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs