Chrome DevTools MCP
ActiveDescription
MCP server providing Chrome DevTools capabilities to coding agents, enabling web debugging, performance analysis, and DOM manipulation automation.
Key Features
- Performance Insights — Record Chrome performance traces and extract actionable optimization recommendations
- Advanced Browser Debugging — Analyze network requests, take screenshots, check console with source-mapped stack traces
- Reliable Automation — Puppeteer-based browser automation with automatic wait for action results
- MCP Server — Model Context Protocol server enabling AI coding assistants to control Chrome
- Multi-client Compatibility — Claude Code, Cursor, Copilot, Cline, Codex and more supported
- Slim Mode — Lightweight tool set for basic browser tasks with reduced resource usage
Use Cases
Categories
Quick Start
# Add to MCP client config
# Claude Code:
claude mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
# Or add to mcpServers config:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}