nodriver — undetected browser automation for VS Code
io.github.andresolbach/nodriver-mcp-server
Undetected anti-bot Chrome automation. 65 tools, parallel isolated browsers.
client:VS Code
transport:stdio
runtime:pypi
Install nodriver — undetected browser automation in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nodriver-headless",
"description": "NODRIVER_HEADLESS",
"password": true
},
{
"type": "promptString",
"id": "nodriver-user-data-dir",
"description": "NODRIVER_USER_DATA_DIR",
"password": true
},
{
"type": "promptString",
"id": "nodriver-browser-path",
"description": "NODRIVER_BROWSER_PATH",
"password": true
},
{
"type": "promptString",
"id": "nodriver-proxy",
"description": "NODRIVER_PROXY",
"password": true
}
],
"servers": {
"nodriver-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"nodriver-mcp"
],
"env": {
"NODRIVER_HEADLESS": "${input:nodriver-headless}",
"NODRIVER_USER_DATA_DIR": "${input:nodriver-user-data-dir}",
"NODRIVER_BROWSER_PATH": "${input:nodriver-browser-path}",
"NODRIVER_PROXY": "${input:nodriver-proxy}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs