sendblue browser mcp for VS Code
io.github.sendblue-api/sendblue-browser-mcp
Drive a stealth-patched Chromium daemon: navigate, screenshot, eval JS, attach over CDP.
client:VS Code
transport:stdio
runtime:npm
Install sendblue browser mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "browser-use-api-key",
"description": "BROWSER_USE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "browser-use-url",
"description": "BROWSER_USE_URL",
"password": true
}
],
"servers": {
"sendblue-browser-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sendblue-browser-mcp"
],
"env": {
"BROWSER_USE_API_KEY": "${input:browser-use-api-key}",
"BROWSER_USE_URL": "${input:browser-use-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs