$ /plugin install chrome-devtools-mcp copy
What it does
Chrome DevTools MCP exposes the Chrome DevTools Protocol to AI agents so they can drive a real browser — take screenshots, analyze performance traces, inspect network requests, and capture memory snapshots — without switching between editor and browser.
Features
- Performance analysis — start/stop Chrome DevTools performance traces, analyze insights, take memory snapshots
- Debugging — take screenshots, inspect console messages, run Lighthouse audits, execute scripts
- Network — list and inspect network requests in detail
- Browser automation — click, type, fill forms, upload files, send keystrokes — Puppeteer-based
- Navigation — navigate pages, open new tabs, switch tabs, wait for conditions
- Emulation — device emulation, page resize
Install options
Pick one of these install modes — don’t install both.
- MCP only — lightweight, connects the MCP server only
- Plugin — full package including MCP + skills + slash commands
If you previously installed the MCP-only mode, remove that MCP config first before switching to the Plugin install.
Requirements
- Node.js v20.19 or later (maintenance LTS)
- Chrome latest stable
Use cases
- Screenshot a page after a UI change to visually verify it, then fix issues directly in the editor.
- Trace page load performance to find bottlenecks and propose optimizations.
- Automate user flows (form fills, button clicks) for ad-hoc E2E testing.
When to use it
- Reproduce and debug UI bugs without copying stack traces between windows
- Profile a page and have Claude summarize the bottlenecks
- Drive E2E flows for manual testing without writing a full Playwright script