Chrome breakpoint debugging MCP server for inspecting runtime values and stepping through code
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag — we're steadily working through the catalog.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP server for breakpoint-driven Chrome debugging.
chrome-debugger-mcp exposes Chrome DevTools Protocol primitives as MCP tools so an AI agent can attach to a real Chrome tab, pause execution, inspect scope values, evaluate expressions inside the current call frame, and step through code with runtime facts instead of guessing from static source.
It is not a general browser automation server. The focus is runtime debugging.
debugger; statements and wait for the exact pause you expect
Demo: the agent launches Chrome, waits for a breakpoint, inspects real scope variables, and resumes with runtime facts instead of guessing.
Or install it globally:
_ui payloads and logging messages that clients can surface to the userMany browser-focused MCP tools are strong at DOM interaction and network inspection, but weak at runtime debugging. This server gives an MCP client the missing loop you would normally use in Chrome DevTools: attach to the right tab, pause at the right time, inspect real values, step if needed, and resume cleanly.
It also adds guardrails that prevent common agent mistakes:
reloadPage() and waitForSpecificPause()debugger; statementsThe server runs over stdio and exposes MCP tools. The most important tools are:
startDebuggingSession: returns the recommended debugging workflow and critical rules for agent behaviorlaunchChrome: launches a dedicated Chrome instance with remote debugging enabledlistTargets: lists available Chrome tabs and requires the user to pick oneconnect: attaches to the confirmed tabsetBreakpoint: creates a CDP breakpoint without modifying source filesremoveBreakpoint: removes a breakpoint created by setBreakpointreloadPage: reloads the current page through CDPwaitForSpecificPause: waits for the next pause and checks whether it matches a target file and linewaitForPause: waits for any pause without location matchinggetScopeVariables: reads local, closure, and module scope values from the paused frameevaluate: executes JavaScript in the paused call framestepInto, stepOver, stepOut: standard execution controlresume: resumes execution after inspectiongetStatus: non-blocking polling for connected or paused stateforcePause: requests a pause at the next JavaScript statementFor AI clients, the intended flow is:
startDebuggingSession().launchChrome() or use an already-running Chrome instance with a CDP port.listTargets() and show the full tab list to the user.connect({ targetUrl }).debugger; statement in local source code, or call setBreakpoint().reloadPage().waitForSpecificPause() in the same turn.getScopeVariables() and evaluate() to inspect runtime values.stepInto(), stepOver(), or stepOut().resume().debugger; statements from source code.This server is designed for tool-using agents, not only for humans. If you are integrating it into an MCP client, keep these rules:
listTargets().connect().reloadPage(), immediately call waitForSpecificPause() or waitForPause() in the same turn.resume() after inspection.debugger; statements to source code, remove them before finishing.waitForSpecificPause MatcheswaitForSpecificPause is the preferred waiting primitive because it is more reliable than waiting for an arbitrary pause.
It matches a pause using two strategies:
debugger-statement pause reasonThe second path matters when source maps, transpilation, or bundling shift compiled line numbers away from editor line numbers.
An agent debugging a local Vite app might do something like this:
launchChrome({ dryRun: true })launchChrome()listTargets()http://127.0.0.1:5173connect({ targetUrl: "127.0.0.1:5173" })debugger; in App.jsxreloadPage()waitForSpecificPause({ urlFragment: "App.jsx", line: 62, actionHint: "click the Refetch payloads button" })getScopeVariables()evaluate({ expression: "payload.modules" })resume()launchChrome() uses a dedicated profile so it does not interfere with the user's normal browser session.
Defaults:
9222~/.chrome-debug-profileExpected Chrome binary locations:
/Applications/Google Chrome.app/Contents/MacOS/Google Chromegoogle-chromeC:\Program Files\Google\Chrome\Application\chrome.exeIf automatic launch fails, the tool returns a command the user can run manually.
This repository includes a disposable test app under test/ so you can exercise the debugger server against a realistic browser workflow.
The service listens on http://127.0.0.1:3030.
The web app runs on http://127.0.0.1:5173.
Useful places to pause:
test/web/src/App.jsx inside loadWorkbenchtest/web/src/App.jsx inside loadModuleDetailtest/web/src/App.jsx around the unfinished detail sectionsRuntime payload areas worth inspecting:
summaryCardsmodulesapiContractsnextActionsresponseShapeMake sure Chrome is running with --remote-debugging-port=9222 and the target page is open.
targetUrlPass a more specific substring so the match becomes unique.
waitForPause or waitForSpecificPause times outThis can happen when:
If your client times out quickly, use getStatus() to poll or increase the client timeout.
Bundlers and transpilers can shift compiled line numbers. Use waitForSpecificPause() and rely on URL fragment matching plus debugger-statement semantics.
The machine may use a non-default Chrome install path. Run the returned launch command manually or adjust the implementation to match your environment.
The implementation lives in:
src/index.ts: MCP tool definitions and user-facing workflow hintssrc/chrome-manager.ts: Chrome DevTools Protocol integration and debugger state managementMIT
一个面向 Chrome 断点调试的 MCP Server。
chrome-debugger-mcp 把 Chrome DevTools Protocol 的核心调试能力暴露为 MCP 工具,让 AI agent 可以连接真实的 Chrome 标签页,在运行时暂停执行、读取作用域变量、在当前调用帧中执行表达式、单步跟踪代码,并基于真实值继续任务,而不是只靠静态源码猜测行为。
它不是通用浏览器自动化工具。它的重点是运行时调试。
debugger; 命中时暂停,并等待指定文件和行附近的 pause
演示流程:agent 拉起 Chrome,等待断点命中,读取真实作用域变量,再基于运行时事实继续执行,而不是靠猜测推进。
也可以全局安装:
_ui 结果和 logging 消息,方便客户端展示给用户Factual signals from GitHub, npm, and our automated checks — not a rating.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/chrome-debugger-mcp)<a href="https://allmcps.com/mcp/chrome-debugger-mcp"><img src="https://allmcps.com/api/badge/chrome-debugger-mcp?style=directory" alt="Chrome Debugger MCP on AllMCPs" /></a>