What is the Scout MCP server?
Browser automation MCP server with 84 tools. Pure CDP, DOM diffing, vision hybrid.
How to install Scout
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": {
"scout": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/felixgeelhaar/scout:1.10.0",
"mcp",
"serve"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"scout": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/felixgeelhaar/scout:1.10.0",
"mcp",
"serve"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"scout": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/felixgeelhaar/scout:1.10.0",
"mcp",
"serve"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"scout": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/felixgeelhaar/scout:1.10.0",
"mcp",
"serve"
]
}
}
}Claude Code
claude mcp add scout -- docker run -i --rm ghcr.io/felixgeelhaar/scout:1.10.0 mcp serveRelated MCP servers
Go code coverage analysis tool with MCP server for AI-powered coverage workflows
View repository →