| name | devtools-debugger-mcp-nodejs |
| description | MCP server for comprehensive Node.js debugging via Chrome DevTools Protocol with breakpoints, stepping, variable inspection, and source maps |
| triggers | ["debug this Node.js application with breakpoints","set up MCP debugging for Node.js","inspect variables during Node.js execution","step through Node.js code with debugger","evaluate expressions in paused Node.js process","configure Chrome DevTools Protocol debugging","troubleshoot Node.js runtime with MCP server","add logpoints to Node.js application"] |
devtools-debugger-mcp-nodejs
Skill by ara.so — Devtools Skills collection.
An MCP (Model Context Protocol) server that exposes comprehensive Node.js debugging capabilities through the Chrome DevTools Protocol. Enables AI assistants to set breakpoints, step through code, inspect variables, evaluate expressions, analyze call stacks, and work with source maps — all programmatically.
What It Does
This MCP server launches Node.js applications with the built-in inspector (--inspect-brk=0), connects via WebSocket to the Chrome DevTools Protocol, and exposes debugging operations as MCP tools. It handles:
- Session management: Launch/stop Node.js processes with debugging enabled
- Breakpoints: Set line breakpoints, conditional breakpoints, logpoints, and pause-on-exceptions
- Execution control: Resume, step over/into/out, continue to location, restart frames
- Inspection: Explore scopes (locals, closures,
this), drill into object properties
- Evaluation: Execute JavaScript expressions in paused call frames
- Console capture: Buffer and retrieve console output between pauses
- Source maps: Full TypeScript and transpiled code debugging support
- Script management: List loaded scripts, fetch sources, blackbox patterns
Installation
npm install devtools-debugger-mcp
Or globally:
npm install -g devtools-debugger-mcp
Configuration
MCP Settings
Add to your MCP client configuration (e.g., Claude Desktop's claude_desktop_config.json):
{
"mcpServers": {
"devtools-debugger": {
"command": "node",
"args": ["/path/to/devtools-debugger-mcp/dist/index.js"]
}
}
}
Or if installed globally:
{
"mcpServers": {
"devtools-debugger": {
"command": "devtools-debugger-mcp"
}
}
}
Output Format
Set default response format (text, json, or both):
{
"tool": "set_output_format",
"params": { "format": "json" }
}
Individual tools can override with their own format parameter.
Core Debugging Workflow
1. Start Debug Session
{
"tool": "start_node_debug",
"params": {
"scriptPath": "/absolute/path/to/app.js",
"format": "text"
}
}
Returns initial pause at first line with pauseId and top frame info.
With arguments and environment:
{
"tool": "start_node_debug",
"params": {
"scriptPath": "/path/to/server.js",
"args": ["--port", "3000"],
"env": {
"NODE_ENV": "development",
"DEBUG": "*"
}
}
}
2. Set Breakpoints
File path + line (1-based):
{
"tool": "set_breakpoint",
"params": {
"filePath": "/path/to/app.js",
"line": 42
}
}
Conditional breakpoint:
{
"tool": "set_breakpoint_condition",
"params": {
"filePath": "/path/to/users.js",
"line": 15,
"condition": "user.age > 18"
}
}
URL regex breakpoint (for modules/packages):
{
"tool": "set_breakpoint_condition",
"params": {
"urlRegex": ".*express.*",
"line": 100,
"condition": "req.method === 'POST'"
}
}
Logpoint (logs message without pausing):
{
"tool": "add_logpoint",
"params": {
"filePath": "/path/to/api.js",
"line": 28,
"message": "Request received: {req.url}"
}
}
3. Exception Breakpoints
{
"tool": "set_exception_breakpoints",
"params": {
"state": "uncaught"
}
}
4. Resume and Step
Resume to next breakpoint:
{
"tool": "resume_execution",
"params": {
"includeScopes": true,
"includeStack": true,
"includeConsole": true,
"format": "text"
}
}
Step over current line:
{
"tool": "step_over",
"params": {
"includeScopes": true,
"includeConsole": true
}
}
Step into function:
{
"tool": "step_into",
"params": {
"includeStack": true
}
}
Step out of current function:
{
"tool": "step_out",
"params": {
"includeScopes": true
}
}
Continue to specific location:
{
"tool": "continue_to_location",
"params": {
"filePath": "/path/to/app.js",
"line": 55,
"column": 10
}
}
5. Inspect Variables and Scopes
Current scope (locals, closures, this):
{
"tool": "inspect_scopes",
"params": {
"maxProps": 20,
"pauseId": "pause123",
"frameIndex": 0,
"includeThisPreview": true,
"format": "text"
}
}
Drill into object properties:
{
"tool": "get_object_properties",
"params": {
"objectId": "object:123",
"maxProps": 50
}
}
6. Evaluate Expressions
{
"tool": "evaluate_expression",
"params": {
"expr": "user.profile.email",
"pauseId": "pause123",
"frameIndex": 0,
"returnByValue": true,
"format": "json"
}
}
Evaluate with side effects:
{
"tool": "evaluate_expression",
"params": {
"expr": "items.push({ id: 5, name: 'test' }); items.length"
}
}
7. Call Stack Inspection
{
"tool": "list_call_stack",
"params": {
"depth": 10,
"pauseId": "pause123",
"includeThis": true,
"format": "text"
}
}
8. Pause Information
{
"tool": "get_pause_info",
"params": {
"pauseId": "pause123",
"format": "text"
}
}
Returns pause reason (breakpoint, exception, step, etc.) and location.
9. Console Output
{
"tool": "read_console",
"params": {
"format": "text"
}
}
Retrieves console messages buffered since last step/resume. Console is also auto-included when includeConsole: true on step/resume tools.
10. Stop Session
{
"tool": "stop_debug_session"
}
Kills the Node.js process and cleans up CDP connection.
Script Management
List Loaded Scripts
{
"tool": "list_scripts"
}
Returns all scripts loaded by Node.js (app files, node_modules, builtins).
Get Script Source
{
"tool": "get_script_source",
"params": {
"scriptId": "42"
}
}
{
"tool": "get_script_source",
"params": {
"url": "file:///path/to/app.js"
}
}
Blackbox Scripts (Skip During Debugging)
{
"tool": "blackbox_scripts",
"params": {
"patterns": [
"node_modules/express/*",
"internal/*"
]
}
}
Frames matching these patterns won't pause during step-into.
Restart Frame
Re-execute a specific call frame:
{
"tool": "restart_frame",
"params": {
"frameIndex": 2,
"pauseId": "pause123",
"format": "text"
}
}
Advanced Patterns
Debug TypeScript with Source Maps
Source maps are automatically detected and used. Just launch your compiled JS:
{
"tool": "start_node_debug",
"params": {
"scriptPath": "/path/to/dist/app.js"
}
}
{
"tool": "set_breakpoint",
"params": {
"filePath": "/path/to/src/app.ts",
"line": 42
}
}
Conditional Debugging Loop
start_node_debug({ scriptPath: "/path/to/app.js" })
set_breakpoint_condition({
filePath: "/path/to/app.js",
line: 25,
condition: "count > 100"
})
resume_execution({ includeScopes: true, includeConsole: true })
inspect_scopes({ maxProps: 15 })
evaluate_expression({ expr: "count" })
resume_execution()
Capture All Console Output
const result = await resume_execution({ includeConsole: true });
const consoleOutput = await read_console({ format: "text" });
Multi-Frame Inspection
list_call_stack({ depth: 20, includeThis: true })
inspect_scopes({ frameIndex: 0 })
inspect_scopes({ frameIndex: 1 })
inspect_scopes({ frameIndex: 2 })
evaluate_expression({ expr: "localVar", frameIndex: 1 })
Exception Debugging
set_exception_breakpoints({ state: "all" })
const result = await resume_execution({ includeStack: true })
get_pause_info()
list_call_stack({ depth: 10 })
inspect_scopes({ maxProps: 20 })
Real-World Example: Debug Express API
{
"tool": "start_node_debug",
"params": {
"scriptPath": "/path/to/server.js",
"env": {
"PORT": "3000",
"NODE_ENV": "development"
}
}
}
{
"tool": "set_breakpoint",
"params": {
"filePath": "/path/to/routes/users.js",
"line": 15
}
}
{
"tool": "add_logpoint",
"params": {
"filePath": "/path/to/middleware/auth.js",
"line": 8,
"message": "Auth check for user: {req.user.id}"
}
}
{
"tool": "set_exception_breakpoints",
"params": { "state": "uncaught" }
}
{
"tool": "resume_execution",
"params": {
"includeScopes": true,
"includeConsole": true
}
}
{
"tool": "evaluate_expression",
"params": {
"expr": ,
:
}
}
{
: ,
: {
:
}
}
{
: ,
: { : }
}
{
: ,
: { : }
}
{
:
}
{
:
}
Real-World Example: Debug Async/Await
async function fetchUserData(userId) {
const user = await db.findUser(userId);
const posts = await db.findPosts(user.id);
return { user, posts };
}
start_node_debug({ scriptPath: "/path/to/app.js" })
set_breakpoint({ filePath: "/path/to/app.js", line: 2 })
resume_execution({ includeScopes: true })
evaluate_expression({ expr: "userId" })
step_over({ includeScopes: true, includeConsole: true })
evaluate_expression({ expr: "user" })
get_object_properties({ objectId: "object:user123", maxProps: 20 })
resume_execution()
File Path Handling
- Always use absolute paths for
filePath parameters
- Relative paths are NOT resolved automatically
- Internal conversion: file paths →
file:// URLs for CDP
- Line numbers are 1-based (CDP internally uses 0-based)
- Column numbers are 1-based when specified
set_breakpoint({ filePath: "/home/user/project/src/app.js", line: 42 })
set_breakpoint({ filePath: "./src/app.js", line: 42 })
Troubleshooting
Session Won't Start
Problem: start_node_debug fails or hangs
Solutions:
- Ensure
scriptPath is an absolute path
- Check that the script file exists and is readable
- Verify Node.js is in PATH
- Try with a simple script first (e.g.,
console.log('test'))
start_node_debug({ scriptPath: "/tmp/test.js" })
Breakpoint Not Hit
Problem: Breakpoint set but execution doesn't pause
Solutions:
- Verify file path matches exactly (use
list_scripts to confirm)
- Check line number is valid (1-based, not 0-based)
- Ensure breakpoint isn't in unreachable code
- Try URL regex if file path doesn't match
list_scripts()
set_breakpoint_condition({
urlRegex: ".*app\\.js$",
line: 42
})
Source Maps Not Working
Problem: Breakpoints in TypeScript sources don't work
Solutions:
- Ensure source maps are generated (
"sourceMap": true in tsconfig.json)
- Check
.map files exist alongside compiled JS
- Verify source map paths are correct (relative or absolute)
- Use compiled JS path if source map lookup fails
set_breakpoint({ filePath: "/path/to/dist/app.js", line: 58 })
Can't Inspect Large Objects
Problem: Objects truncated or not showing all properties
Solutions:
- Increase
maxProps parameter
- Use
get_object_properties to drill down
- Evaluate specific property paths with
evaluate_expression
inspect_scopes({ maxProps: 100 })
evaluate_expression({ expr: "largeObject.specificProperty" })
Console Output Missing
Problem: Console logs not captured
Solutions:
- Use
includeConsole: true on step/resume operations
- Or call
read_console explicitly after stepping
- Console buffer is cleared after each read
step_over({ includeConsole: true })
read_console({ format: "text" })
Session Cleanup
Problem: Zombie Node.js processes after debugging
Solutions:
- Always call
stop_debug_session when done
- MCP server cleans up on disconnect, but explicit stop is better
- Check for orphaned Node.js processes:
ps aux | grep node
pkill -f "node --inspect-brk"
Multiple Pauses
Problem: Execution pauses unexpectedly
Solutions:
- Check for multiple breakpoints at same location
- Review exception breakpoint settings (
set_exception_breakpoints)
- Use
get_pause_info to understand why paused
- Remove breakpoints: restart session or use CDP commands directly
get_pause_info({ format: "text" })
set_exception_breakpoints({ state: "none" })
Tips and Best Practices
- Use absolute paths: Always provide absolute file paths for breakpoints
- Include context: Add
includeScopes, includeStack, includeConsole on steps for richer debugging
- Blackbox dependencies: Skip node_modules during step-into with
blackbox_scripts
- Conditional breakpoints: Use conditions to pause only when specific criteria met
- Logpoints over breakpoints: Use logpoints for non-intrusive logging without pausing
- Pause on uncaught only: Set
state: 'uncaught' to avoid pausing on handled exceptions
- Clean up sessions: Always call
stop_debug_session when done
- Test with simple scripts: Verify setup with minimal examples before complex debugging
- Check pauseId: After each pause, note the
pauseId for context-specific operations
- Frame-aware evaluation: Use
frameIndex to evaluate expressions in specific call frames
Environment Variables
The MCP server itself doesn't require environment variables, but your Node.js scripts may:
{
"tool": "start_node_debug",
"params": {
"scriptPath": "/path/to/app.js",
"env": {
"DATABASE_URL": process.env.DATABASE_URL,
"API_KEY": process.env.API_KEY,
"NODE_ENV": "development"
}
}
}
Never hardcode secrets in debugging params — reference environment variables or use a .env file in your project.
License
MIT