MCP Server
Active
MIT
io.github.cherchyk/browser MCP Server
io.github.cherchyk/browser
What is the io.github.cherchyk/browser MCP server?
MCP server for loading authenticated web pages using Chrome DevTools Protocol
How to install io.github.cherchyk/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": {
"browser": {
"command": "npx",
"args": [
"-y",
"mcpbrowser"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"browser": {
"command": "npx",
"args": [
"-y",
"mcpbrowser"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"browser": {
"command": "npx",
"args": [
"-y",
"mcpbrowser"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"browser": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcpbrowser"
]
}
}
}Claude Code
claude mcp add browser -- npx -y mcpbrowserRelated MCP servers
MCP Browser
Active
Browser automation using the user's Chromium session — JS execution, auth, and anti-bot support.
7
View repository →JavaScript
MIT