Discover / Development

Chrome DevTools MCP

by ChromeDevToolsTypeScript

Chrome DevTools for coding agents through the Model Context Protocol.

MCP Serverexperimental

Maturity: experimental because repository is 12 months old. Derived from release and commit history, not a rating.

Stars
51k
Forks
3.6k
Downloads / mo
Last commit
2026-09-06
License
Apache-2.0
Open issues
97

Market and trust evidence

Edition not yet matched

No exact skills.sh identity match is available for this repository. Repository adoption and freshness remain visible above; install momentum is not inferred.

Trust analysis is a screening signal, not a security warranty. Read the ranking and trust methodology.

Install

Derived from the published package name in the repository, not from a model.

Video walkthroughs

Third-party YouTube uploads matched to this tool by title, channel and repository name. Not made, reviewed or endorsed by SkillPilot. View counts and publish months are as of the match date and the month is approximate. Nothing loads from YouTube until you press play.

What the repository ships

MCP manifestHas testsHas docsSecurity policyCI configured

Detected from the actual files in the repository root.

Latest release chrome-devtools-mcp-v1.8.0

Published 2026-08-25

1.8.0 (2026-08-25)

🎉 Features

  • Add additional params to get_heapsnapshot_edges (#2561) (b58c613)
  • add optional stack traces to list_console_messages (#2505) (85c73a0)
  • add PWA automation tools (#2430) (0ea5c8d), closes #2270
  • Add query_heapsnapshot MCP tool (#2553) (fadbf41)
  • allow evaluate_script to skip the stable DOM wait (#2346) (781e2fb)
  • make pageId required for page-scoped tools by default (#1777) (50a16fa)
  • Report memory kept alive by contexts in get_heapsnapshot_summary (#2570) (4103808)
  • Show self and retained sizes for edges (#2529) (2a7eb76)
  • support uploading multiple files with upload_file (#2257) (c8a2393)
  • Use ranges with human readable sizes (#2589) (61e312f)

🛠️ Fixes

  • cli: adjust chrome-devtools start defaults (#2597) (c6cff23)
  • cli: enable tools which require --memoryDebugging on the CLI (#2585) (1c92ba0)
  • clI: print the errror message alone instead of JSON in the CLI (#2580) (fce756a)
  • cli: update the CLI skill (#2569) (0e108ea)
  • do not append page url when the previously selected page is gone. (#2588) (6506425)
  • do not block tool calls on a roots/list the client is slow to answer ([#2477](https://github.com/Chr

Tags

README

Chrome DevTools for agents

npm chrome-devtools-mcp package

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][cli] is also provided for use without MCP.

[Tool reference][tool-reference] | [Changelog][changelog] | [Contributing][contributing] | [Troubleshooting][troubleshooting] | [Design Principles][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 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 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.

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:


"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.

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

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][slim-tool-reference].

MCP Client configuration

For setup instructions specific to your editor or agent (e.g. Antigravity, Claude Code, Cursor, VS Code), please see our [Client Configurations Guide][client-configurations-guide].

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.

[!NOTE]

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][troubleshooting].

See the full [Tool Reference][tool-reference] for a complete list of all supported MCP capabilities.

Configuration

Find the complete list of server parameters (e.g., --headless, --isolated, --slim) and how to configure WebSocket connections in the [Configuration Guide][configuration-guide].

Advanced Usage

For advanced features such as handling concurrent sessions, persistent user data directories, connecting to a running Chrome instance instead of starting a new one, or debugging on Android, see our [Advanced Usage Guide][advanced-usage-guide].

Integrating as a browser subagent

If you are developing agentic tooling and want to provide an integrated browser subagent as part of your product, we recommend building on top of Chrome DevTools for agents.

For a reference implementation, see the Gemini CLI browser agent documentation.

[advanced-usage-guide]: ./docs/advanced-usage.md

[changelog]: ./CHANGELOG.md

[cli]: ./docs/cli.md

[client-configurations-guide]: ./docs/client-configurations.md

[configuration-guide]: ./docs/configuration.md

[contributing]: ./CONTRIBUTING.md

[design-principles]: ./docs/design-principles.md

[slim-tool-reference]: ./docs/slim-tool-reference.md

[tool-reference]: ./docs/tool-reference.md

[troubleshooting]: ./docs/troubleshooting.md

Related tools