@Aoyi21: The most annoying part of frontend development is often not writing code, but having to manually check the browser after the agent makes changes. chrome-devtools-mcp fills this gap, allowing coding agents to directly connect to Chrome DevTools to inspect pages, capture logs, and check network requests.
Summary
chrome-devtools-mcp is an MCP server that enables coding agents to directly connect to Chrome DevTools for page inspection, log capture, and network request analysis, reducing back-and-forth communication for manual review by developers.
View Cached Full Text
Cached at: 07/04/26, 10:54 PM
The most annoying part of front-end work is often not writing code, but having to manually check the browser yourself after the agent makes changes. chrome-devtools-mcp fills this gap — coding agents can directly connect to Chrome DevTools to view pages, capture logs, and inspect network requests. It also supports being installed as a Codex MCP server, or directly as a plugin, with integration that is lighter than you might expect. If you are already using an agent to modify pages, this tool can save you many rounds of “send me a screenshot first” back-and-forth.
ChromeDevTools/chrome-devtools-mcp
Source: https://github.com/ChromeDevTools/chrome-devtools-mcp
Chrome DevTools for agents
npm chrome-devtools-mcp package (https://npmjs.org/package/chrome-devtools-mcp)
Chrome DevTools for agents (chrome-devtools-mcp) lets your coding agent (such as Antigravity, Claude, Cursor or Copilot) control and inspect a live Chrome browser. It acts as a Model-Context-Protocol (MCP) server, giving your AI coding assistant access to the full power of Chrome DevTools for reliable automation, in-depth debugging, and performance analysis. A CLI is also provided for use without MCP.
Tool reference | Changelog | Contributing | Troubleshooting | Design Principles
Key features
- Get performance insights: Uses Chrome DevTools (https://github.com/ChromeDevTools/devtools-frontend) to record traces and extract actionable performance insights.
- Advanced browser debugging: Analyze network requests, take screenshots and check browser console messages (with source-mapped stack traces).
- Reliable automation. Uses puppeteer (https://github.com/puppeteer/puppeteer) to automate actions in Chrome and automatically wait for action results.
Disclaimers
chrome-devtools-mcp exposes content of the browser instance to the MCP clients allowing them to inspect, debug, and modify any data in the browser or DevTools. Avoid sharing sensitive or personal information that you don’t want to share with MCP clients.
chrome-devtools-mcp officially supports Google Chrome and Chrome for Testing (https://developer.chrome.com/blog/chrome-for-testing/) only. Other Chromium-based browsers may work, but this is not guaranteed, and you may encounter unexpected behavior. Use at your own discretion.
We are committed to providing fixes and support for the latest version of Extended Stable Chrome (https://chromiumdash.appspot.com/schedule).
Performance tools may send trace URLs to the Google CrUX API to fetch real-user experience data. This helps provide a holistic performance picture by presenting field data alongside lab data. This data is collected by the Chrome User Experience Report (CrUX) (https://developer.chrome.com/docs/crux). To disable this, run with the --no-performance-crux flag.
Usage statistics
Google collects usage statistics (such as tool invocation success rates, latency, and environment information) to improve the reliability and performance of Chrome DevTools MCP. Data collection is enabled by default. You can opt-out by passing the --no-usage-statistics flag when starting the server:
json "args": ["-y", "chrome-devtools-mcp@latest", "--no-usage-statistics"]
Google handles this data in accordance with the Google Privacy Policy (https://policies.google.com/privacy).
Google’s collection of usage statistics for Chrome DevTools MCP is independent from the Chrome browser’s usage statistics. Opting out of Chrome metrics does not automatically opt you out of this tool, and vice-versa.
Collection is disabled if CHROME_DEVTOOLS_MCP_NO_USAGE_STATISTICS or CI env variables are set.
Update checks
By default, the server periodically checks the npm registry for updates and logs a notification when a newer version is available. You can disable these update checks by setting the CHROME_DEVTOOLS_MCP_NO_UPDATE_CHECKS environment variable.
Requirements
- Node.js (https://nodejs.org/) LTS (https://github.com/nodejs/Release#release-schedule) version.
- Chrome (https://www.google.com/chrome/) current stable version or newer.
- npm (https://www.npmjs.com/)
Getting started
Add the following config to your MCP client:
json { "mcpServers": { "chrome-devtools": { "command": "npx", "args": ["-y", "chrome-devtools-mcp@latest"] } } }
Using
chrome-devtools-mcp@latestensures that your MCP client will always use the latest version of the Chrome DevTools MCP server.
If you are interested in doing only basic browser tasks, use the --slim mode:
json { "mcpServers": { "chrome-devtools": { "command": "npx", "args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"] } } }
See Slim tool reference.
MCP Client configuration
Amp
Follow https://ampcode.com/manual#mcp and use the config provided above. You can also install the Chrome DevTools MCP server using the CLI:
bash amp mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
Antigravity
To use the Chrome DevTools MCP server follow the instructions from Antigravity’s docs to install a custom MCP server. Add the following config to the MCP servers config:
bash { "mcpServers": { "chrome-devtools": { "command": "npx", "args": [ "-y", "chrome-devtools-mcp@latest", "--browser-url=http://127.0.0.1:9222" ] } } }
This will make the Chrome DevTools MCP server automatically connect to the browser that Antigravity is using. If you are not using port 9222, make sure to adjust accordingly.
Chrome DevTools MCP will not start the browser instance automatically using this approach because the Chrome DevTools MCP server connects to Antigravity’s built-in browser. If the browser is not already running, you have to start it first by clicking the Chrome icon at the top right corner.
Claude Code
Install via CLI (MCP only)
Use the Claude Code CLI to add the Chrome DevTools MCP server (guide):
bash claude mcp add chrome-devtools --scope user npx chrome-devtools-mcp@latest
Install as a Plugin (MCP + Skills)
If you already had Chrome DevTools MCP installed previously for Claude Code, make sure to remove it first from your installation and configuration files.
To install Chrome DevTools MCP with skills, add the marketplace registry in Claude Code:
sh /plugin marketplace add ChromeDevTools/chrome-devtools-mcp
Then, install the plugin:
sh /plugin install chrome-devtools-mcp@chrome-devtools-plugins
Restart Claude Code to have the MCP server and skills load (check with /skills).
If the plugin installation fails with a
Failed to clone repositoryerror (e.g., HTTPS connectivity issues behind a corporate firewall), see the troubleshooting guide for workarounds, or use the CLI installation method above instead.
Cline
Follow https://docs.cline.bot/mcp/configuring-mcp-servers and use the config provided above.
Codex
Follow the configure MCP guide using the standard config from above. You can also install the Chrome DevTools MCP server using the Codex CLI:
bash codex mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
On Windows 11
Configure the Chrome install location and increase the startup timeout by updating .codex/config.toml and adding the following env and startup_timeout_ms parameters:
[mcp_servers.chrome-devtools] command = "cmd" args = [ "/c", "npx", "-y", "chrome-devtools-mcp@latest", ] env = { SystemRoot="C:\\Windows", PROGRAMFILES="C:\\Program Files" } startup_timeout_ms = 20_000
Command Code
Use the Command Code CLI to add the Chrome DevTools MCP server (MCP guide):
bash cmd mcp add chrome-devtools --scope user npx chrome-devtools-mcp@latest
Copilot CLI
Start Copilot CLI:
copilot
Start the dialog to add a new MCP server by running:
/mcp add
Configure the following fields and press CTRL+S to save the configuration:
- Server name:
chrome-devtools - Server Type:
[1] Local - Command:
npx -y chrome-devtools-mcp@latest
Copilot / VS Code
Install as a Plugin (Recommended)
The easiest way to get up and running is to install chrome-devtools-mcp as an agent plugin. This bundles the MCP server and all skills together, so your agent gets both the tools and the expert guidance it needs to use them effectively.
- Open the Command Palette (
Cmd+Shift+Pon macOS orCtrl+Shift+Pon Windows/Linux). - Search for and run the Chat: Install Plugin From Source command.
- Paste in our repository name:
ChromeDevTools/chrome-devtools-mcp.
That’s it! Your agent is now supercharged with Chrome DevTools capabilities.
Install as an MCP Server (MCP only)
Click the button to install:
Or install manually:
Follow the VS Code MCP configuration guide (https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) using the standard config from above, or use the CLI:
For macOS and Linux:
bash code --add-mcp '{"name":"io.github.ChromeDevTools/chrome-devtools-mcp","command":"npx","args":["-y","chrome-devtools-mcp"],"env":{}}'
For Windows (PowerShell):
powershell code --add-mcp '{"""name""":"""io.github.ChromeDevTools/chrome-devtools-mcp""","""command""":"""npx""","""args""":["""-y""","""chrome-devtools-mcp"""]}'
Cursor
Click the button to install:
Or install manually:
Go to Cursor Settings -> MCP -> New MCP Server. Use the config provided above.
Factory CLI
Use the Factory CLI to add the Chrome DevTools MCP server (guide):
bash droid mcp add chrome-devtools "npx -y chrome-devtools-mcp@latest"
Gemini CLI
Install the Chrome DevTools MCP server using the Gemini CLI.
Project wide:
``bash
Either MCP only:
gemini mcp add chrome-devtools npx chrome-devtools-mcp@latest
Or as a Gemini extension (MCP+Skills):
gemini extensions install –auto-update https://github.com/ChromeDevTools/chrome-devtools-mcp
``
Globally:
bash gemini mcp add -s user chrome-devtools npx chrome-devtools-mcp@latest
Alternatively, follow the MCP guide and use the standard config from above.
Gemini Code Assist
Follow the configure MCP guide using the standard config from above.
JetBrains AI Assistant & Junie
Go to Settings | Tools | AI Assistant | Model Context Protocol (MCP) -> Add. Use the config provided above.
The same way chrome-devtools-mcp can be configured for JetBrains Junie in Settings | Tools | Junie | MCP Settings -> Add. Use the config provided above.
Kiro
In Kiro Settings, go to Configure MCP > Open Workspace or User MCP Config > Use the configuration snippet provided above.
Or, from the IDE Activity Bar > Kiro > MCP Servers > Click Open MCP Config. Use the configuration snippet provided above.
Katalon Studio
The Chrome DevTools MCP server can be used with Katalon StudioAssist via an MCP proxy.
Step 1: Install the MCP proxy by following the MCP proxy setup guide.
Step 2: Start the Chrome DevTools MCP server with the proxy:
bash mcp-proxy --transport streamablehttp --port 8080 -- npx -y chrome-devtools-mcp@latest
Note: You may need to pick another port if 8080 is already in use.
Step 3: In Katalon Studio, add the server to StudioAssist with the following settings:
- Connection URL:
http://127.0.0.1:8080/mcp - Transport type:
HTTP
Once connected, the Chrome DevTools MCP tools will be available in StudioAssist.
Mistral Vibe
Add in ~/.vibe/config.toml:
toml [[mcp_servers]] name = "chrome-devtools" transport = "stdio" command = "npx" args = ["chrome-devtools-mcp@latest"]
OpenCode
Add the following configuration to your opencode.json file. If you don’t have one, create it at ~/.config/opencode/opencode.json (guide):
json { "$schema": "https://opencode.ai/config.json", "mcp": { "chrome-devtools": { "type": "local", "command": ["npx", "-y", "chrome-devtools-mcp@latest"] } } }
Qoder
In Qoder Settings, go to MCP Server > + Add > Use the configuration snippet provided above.
Alternatively, follow the MCP guide and use the standard config from above.
Qoder CLI
Install the Chrome DevTools MCP server using the Qoder CLI (guide):
Project wide:
bash qodercli mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
Globally:
bash qodercli mcp add -s user chrome-devtools -- npx chrome-devtools-mcp@latest
Visual Studio
Click the button to install:
Warp
Go to Settings | AI | Manage MCP Servers -> + Add to add an MCP Server (https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server). Use the config provided above.
Windsurf
Follow the configure MCP guide using the standard config from above.
Your first prompt
Enter the following prompt in your MCP Client to check if everything is working:
Check the performance of https://developers.chrome.com
Your MCP client should open the browser and record a performance trace.
The MCP server will start the browser automatically once the MCP client uses a tool that requires a running browser instance. Connecting to the Chrome DevTools MCP server on its own will not automatically start the browser.
Tools
If you run into any issues, checkout our troubleshooting guide.
- Input automation (10 tools)
- Navigation automation (6 tools)
- Emulation (2 tools)
- Performance (3 tools)
- Network (2 tools)
- Debugging (8 tools)
- Memory (11 tools)
take_heapsnapshot- [
close_heapsnapshot](docs/tool-reference.
Similar Articles
@shao__meng: Chrome DevTools for Agents 1.0 Officially Released https://developer.chrome.com/blog/devtools-for-agents-v1… It observes behavior in real browsers, checks output, allowing the Agent to…
Chrome DevTools for Agents 1.0 is now officially released, providing real-time browser debugging capabilities for AI coding agents. It supports three integration methods: MCP server, CLI, and Agent skills. Key capabilities include Lighthouse auditing, simulation, extension debugging, and more.
ChromeDevTools/chrome-devtools-mcp
Chrome DevTools MCP is an open-source Model Context Protocol server that lets AI coding agents (Gemini, Claude, Cursor, Copilot) control and inspect a live Chrome browser for automation, debugging, and performance analysis. It integrates Chrome DevTools with Puppeteer to provide AI assistants full browser inspection and automation capabilities.
@QingQ77: Directly connect to an existing Chrome browser's DevTools Protocol via a lightweight Rust CLI, replacing the heavy context overhead of MCP server to enable browser automation. https://github.com/aeroxy/chrom…
This is a lightweight CLI tool written in Rust that directly connects to a local Chrome browser via DevTools Protocol for automation, designed to replace MCP server to reduce context overhead.
@googledevs: Modern Web Guidance + Chrome DevTools for agents = A powerful new workflow. Matthias Rohmer takes you inside the #Googl…
Google demonstrated at Google I/O a new workflow of Chrome DevTools with AI agents, including APIs such as WebMCP and HTML-in-Canvas, aiming to make it easy for developers to expose web page functionality to AI agents while maintaining semantics, accessibility, and security boundaries.
Debug web apps with browser use in Codex
Codex's Browser Use feature adds Chrome DevTools Protocol support, enabling developers to deeply debug web applications by inspecting network traffic, performance analysis, console logs, and other advanced features.