Skip to content
VS Code

weboperator for VS Code

io.github.kazkozdev/weboperator

Hands your live Chrome tab to any MCP client — snapshot, navigate, click, type, extract.

client:VS Code transport:stdio runtime:npm

Install weboperator in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "weboperator-bridge-port",
      "description": "WEBOPERATOR_BRIDGE_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weboperator-agent-socket",
      "description": "WEBOPERATOR_AGENT_SOCKET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weboperator-api-token",
      "description": "WEBOPERATOR_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "weboperator": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "weboperator-mcp"
      ],
      "env": {
        "WEBOPERATOR_BRIDGE_PORT": "${input:weboperator-bridge-port}",
        "WEBOPERATOR_AGENT_SOCKET": "${input:weboperator-agent-socket}",
        "WEBOPERATOR_API_TOKEN": "${input:weboperator-api-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

weboperator in other clients