chrome-debug-mcp is an asynchronous Rust-based Model Context Protocol (MCP) server that allows AI agents and Large Language Models to natively debug Chromium-based browsers via the Chrome DevTools Protocol (CDP).
サーバー設定
{
"mcpServers": {
"chrome-debug-mcp": {
"command": "chrome-debug-mcp",
"args": []
},
"chrome-docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"chrome-debug-mcp:v1.0.0",
"--headless"
]
},
"chrome-docker-hybrid": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--net=host",
"chrome-debug-mcp:v1.0.0",
"--host",
"127.0.0.1"
]
}
}
}