Best for
- Frontend developers who want AI-assisted web debugging and performance analysis
- Scenarios that need browser automation and performance diagnostics in the same tool
Maintained by the official Chrome DevTools team; tools are organized into input automation, navigation, emulation, performance, and network categories with broad coverage and a dedicated troubleshooting doc. A one-line npx command starts it. This review is a static check of source and docs, not an actual run.
Officially maintained by the Google Chrome DevTools team, this MCP server exposes browser input automation, navigation control, device emulation, performance trace analysis, and network request inspection to AI coding assistants — for debugging web issues, analyzing performance bottlenecks, and automating browser actions.
Start via npx -y chrome-devtools-mcp@latest — the @latest tag ensures you always run the newest version. For basic browser tasks only, add the --slim flag for a leaner mode with fewer tools enabled.
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}