Skip to content
VS Code

Browserbase for VS Code

io.github.mindstone/mcp-server-browserbase

Browserbase MCP server: cloud browser sessions, agents, contexts, fetch, search, functions

client:VS Code transport:stdio runtime:npm

Install Browserbase in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "browserbase-api-key",
      "description": "BROWSERBASE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "browserbase-request-timeout-ms",
      "description": "BROWSERBASE_REQUEST_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-workspace-path",
      "description": "MCP_WORKSPACE_PATH",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-browserbase": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-browserbase"
      ],
      "env": {
        "BROWSERBASE_API_KEY": "${input:browserbase-api-key}",
        "BROWSERBASE_REQUEST_TIMEOUT_MS": "${input:browserbase-request-timeout-ms}",
        "MCP_WORKSPACE_PATH": "${input:mcp-workspace-path}"
      }
    }
  }
}

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

Browserbase in other clients