What problem does it solve?
It helps you quickly diagnose why a web page is slow, broken, or behaving unexpectedly by using Chrome DevTools MCP to inspect the live DOM, network, console, and performance traces.
Core Features & Use Cases
- Snapshot-first element targeting: Take an accessibility snapshot to reliably locate UI elements by uid, then interact with them (click, fill) without guesswork.
- Live debugging visibility: Inspect console output and enumerate network requests to pinpoint JavaScript errors, failed resources, and unexpected API behavior.
- Performance profiling: Start/stop performance traces and analyze insights to identify bottlenecks affecting Core Web Vitals and user experience.
- Use case: Reproduce a UI bug on a staging site, locate the exact element involved via snapshot uids, confirm the failing API call in network logs, then validate whether performance regressions correlate with the incident.
Quick Start
Use chrome-devtools to navigate to the given URL, take a snapshot to find the login button, click it, then list console messages and failed network requests to identify the cause.