skillpack.co
All skills

Chrome DevTools MCP

active

Google Chrome team's official MCP server for Chrome DevTools. Gives coding agents deep debugging, performance profiling, and Core Web Vitals analysis through 26 tools across 6 categories.

Connector
Composite
Complexity
browserweb

86/100

Trust

30K+

Stars

5

Evidence

4.5 MB

Repo size

Product screenshot

Chrome DevTools MCP in action

Videos

Reviews, tutorials, and comparisons from the community.

Chrome DevTools MCP Server Solves a BIG Problem

DesignCourse·2025-09-26

Announcing Chrome DevTools MCP! 🚀 Connect your AI coding agent to Chrome's powerful debugger free

Addy Osmani·2025-09-25

Chrome DevTools MCP: Automated Test, Debug and Performance Analysis with AI

Execute Automation·2025-09-30

Repo health

86/100

1d ago

Last push

86

Open issues

1,790

Forks

65

Contributors

Editorial verdict

Best MCP-native option for debugging, performance analysis, and Chrome-specific development workflows. Complements Playwright MCP rather than replacing it.

Public evidence

strong2026-03
HN: Chrome DevTools MCP — 598 points, 231 comments (item 47390817)

Highest HN score of any tool in the web-browsing category (2026-03-15, 4 days old at time of ranking). Real users describing production workflows — Storybook auditing, API reverse-engineering, SVG editing. Surpassed Playwright MCP in community engagement. Weekly releases with active v1.x cadence.

598 HN points, 231 commentsHN community
strong2026-03
Mastalerz.it: Playwright MCP vs Chrome DevTools MCP comparison

Concludes 'Chrome DevTools MCP is sufficient for regular development — use Playwright MCP only when cross-browser support is necessary.' Positions Chrome DevTools MCP as the default for Chrome-centric workflows.

Independent developer blogIndependent developer
moderateSelf-reported2026-03
ChromeDevTools/chrome-devtools-mcp: 29.7K stars — official Google Chrome project

30,073 stars (more than Playwright MCP at 29,221). Official Google Chrome team project under ChromeDevTools org. Apache-2.0 license. Standalone CLI mode in v0.20.0, v0.20.1 shipped 2026-03-17. Weekly releases. Direct official backing guarantees CDP protocol alignment.

29,661 stars, 1,755+ forks, 30+ contributorsGoogle Chrome team (official)

How does this compare?

See side-by-side metrics against other skills in the same category.

COMPARE SKILLS →

Where it wins

Official Google Chrome team backing — institutional credibility

26 tools across 6 categories including unique Core Web Vitals, CPU/network emulation, accessibility audits

Can connect to active browser sessions — debug authenticated pages without separate sign-in

Weekly releases up to v0.20.0 — rapid iteration cadence

Where to be skeptical

Chrome-only — no Firefox/Safari/cross-browser support

Debugging-focused niche — less suitable for end-to-end UI testing flows

18K token tool schema — slightly heavier than Playwright MCP's 13.7K

Ranking in categories

Know a better alternative?

Submit evidence and we'll run the full pipeline.

SUBMIT →

Similar skills

Raw GitHub source

GitHub README peek

Constrained peek so you can sanity-check the source material without leaving the site.

Chrome DevTools MCP

chrome-devtools-mcp lets your coding agent (such as Gemini, 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.

Tool reference | Changelog | Contributing | Troubleshooting | Design Principles

Key features

  • Get performance insights: Uses Chrome DevTools 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 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.

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). 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:

"args": ["-y", "chrome-devtools-mcp@latest", "--no-usage-statistics"]

Google handles this data in accordance with the Google Privacy Policy.

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.

Requirements

  • Node.js v20.19 or a newer latest maintenance LTS version.
  • Chrome current stable version or newer.
  • npm.

Getting started

Add the following config to your MCP client:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest"]
    }
  }
}

[!NOTE]
Using chrome-devtools-mcp@latest ensures 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:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
    }
  }
}

See Slim tool reference.

MCP Client configuration
<details> <summary>Amp</summary> Follow https://ampcode.com/manual#mcp and use the config provided above. You can also install the Chrome DevTools MCP server using the CLI:
amp mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
</details> <details> <summary>Antigravity</summary>

To use the Chrome DevTools MCP server follow the instructions from <a href="https://antigravity.google/docs/mcp">Antigravity's docs</a> to install a custom MCP server. Add the following config to the MCP servers config:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": [
        "chrome-devtools-mcp@latest",
        "--browser-url=http://127.0.0.1:9222",
        "-y"
      ]
    }
  }
}

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.

</details> <details> <summary>Claude Code</summary>

Install via CLI (MCP only)

Use the Claude Code CLI to add the Chrome DevTools MCP server (<a href="https://code.claude.com/docs/en/mcp">guide</a>):

claude mcp add chrome-devtools --scope user npx chrome-devtools-mcp@latest

Install as a Plugin (MCP + Skills)

View on GitHub →