Skip to content
VS Code

Parallel Browser MCP for VS Code

io.github.etairl/parallel-browser-mcp

MCP server for parallel browser automation across multiple providers.

client:VS Code transport:stdio runtime:npm

Install Parallel Browser MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "browser-mcp-config",
      "description": "BROWSER_MCP_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "browser-mcp-config-path",
      "description": "BROWSER_MCP_CONFIG_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "browserbase-api-key",
      "description": "BROWSERBASE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "browserbase-project-id",
      "description": "BROWSERBASE_PROJECT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anchor-api-key",
      "description": "ANCHOR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudflare-api-token",
      "description": "CLOUDFLARE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudflare-account-id",
      "description": "CLOUDFLARE_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "playwright-use-cloakbrowser",
      "description": "PLAYWRIGHT_USE_CLOAKBROWSER",
      "password": true
    }
  ],
  "servers": {
    "parallel-browser-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "parallel-browser-mcp"
      ],
      "env": {
        "BROWSER_MCP_CONFIG": "${input:browser-mcp-config}",
        "BROWSER_MCP_CONFIG_PATH": "${input:browser-mcp-config-path}",
        "BROWSERBASE_API_KEY": "${input:browserbase-api-key}",
        "BROWSERBASE_PROJECT_ID": "${input:browserbase-project-id}",
        "ANCHOR_API_KEY": "${input:anchor-api-key}",
        "CLOUDFLARE_API_TOKEN": "${input:cloudflare-api-token}",
        "CLOUDFLARE_ACCOUNT_ID": "${input:cloudflare-account-id}",
        "PLAYWRIGHT_USE_CLOAKBROWSER": "${input:playwright-use-cloakbrowser}"
      }
    }
  }
}

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

Parallel Browser MCP in other clients