Debug web applications by having an AI assistant take screenshots and inspect the live browser instead of reasoning about code alone.
Automate web testing workflows where an AI agent navigates pages, fills forms, and validates behavior without manual intervention.
Analyze page performance with Chrome DevTools traces to identify bottlenecks and get actionable insights about load speed.
Requires Chrome/Chromium browser installed and Node.js runtime; MCP server setup and connection to Claude may need configuration.
Chrome DevTools MCP is a server that gives AI coding assistants, such as Claude, Gemini, Cursor, or GitHub Copilot, direct access to a live Chrome browser for automation, debugging, and performance analysis. MCP stands for Model Context Protocol, an open standard that allows AI tools to call external capabilities. This server implements that protocol, bridging the AI assistant to the Chrome browser's built-in developer tools. The server is built on top of Puppeteer, a well-known library for programmatically controlling Chrome. Through this MCP server, an AI agent can take screenshots of web pages, inspect and interact with the browser console, monitor network requests, automate user actions like clicking and form submission, and run Chrome DevTools performance traces to get actionable insights about page load speed. Because it connects to Chrome's native DevTools protocol, it has access to the full depth of browser debugging information, including source-mapped stack traces that map error locations back to the original source code rather than compiled output. You would use this when building or debugging a web application with the help of an AI coding assistant and you want the AI to directly verify how the app behaves in a real browser rather than just reasoning about the code. Instead of you taking screenshots and pasting them into the chat, the AI can drive the browser itself. It is also useful for automated web testing scenarios where an AI agent needs to navigate pages and validate behavior. The tech stack is TypeScript running on Node.js (version 20.19 or later), and it is distributed as an npm package called chrome-devtools-mcp.
Generated 2026-05-18 · Model: sonnet-4-6 · Verify against the repo before relying on details.