PluginBench
MCP Server
Active
MIT

MCP Browser MCP Server

io.github.cherchyk/mcpbrowser

What is the MCP Browser MCP server?

Browser automation using the user's Chromium session — JS execution, auth, and anti-bot support.

How to install MCP Browser

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcpbrowser": {
      "command": "npx",
      "args": [
        "-y",
        "mcpbrowser"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcpbrowser": {
      "command": "npx",
      "args": [
        "-y",
        "mcpbrowser"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcpbrowser": {
      "command": "npx",
      "args": [
        "-y",
        "mcpbrowser"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcpbrowser": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcpbrowser"
      ]
    }
  }
}
Claude Code
claude mcp add mcpbrowser -- npx -y mcpbrowser

Related MCP servers

MCP server for loading authenticated web pages using Chrome DevTools Protocol

7
JavaScript
MIT
View repository →