io.github.Digital-Defiance/mcp-debugger
NPM · @AI-CAPABILITIES-SUITE/MCP-DEBUGGER-SERVER · SCANNED AUG 3
Node.js and TypeScript debugging with 25+ tools for AI agents
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 233 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1623 tokens (~55/item across 29 items; 29 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @ai-capabilities-suite/mcp-debugger-server
claude mcp add digital-defiance-mcp-debugger -- npx -y @ai-capabilities-suite/mcp-debugger-server
codex mcp add digital-defiance-mcp-debugger -- npx -y @ai-capabilities-suite/mcp-debugger-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"digital-defiance-mcp-debugger": {
"type": "local",
"command": [
"npx",
"-y",
"@ai-capabilities-suite/mcp-debugger-server"
],
"enabled": true
}
}
} openclaw mcp add digital-defiance-mcp-debugger --command npx --arg -y --arg @ai-capabilities-suite/mcp-debugger-server
mcp_servers:
digital-defiance-mcp-debugger:
command: "npx"
args: ["-y", "@ai-capabilities-suite/mcp-debugger-server"] {
"mcpServers": {
"digital-defiance-mcp-debugger": {
"command": "npx",
"args": [
"-y",
"@ai-capabilities-suite/mcp-debugger-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +4
- Stability: unverified → 0.27 ▲ functional
- 2 Aug 26 +46
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → partial ▲ security
- Install scripts: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Security disclosure: fail → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 −1
- Malware scan: unverified → pass ▲ security
- Tool coverage: 100 → unverified ▼ functional
- First check of Schema quality: unverified functional
- 31 Jul 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@ai-capabilities-suite/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 98 packages
98 packages in the resolved dependency tree · 97 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
debugger_add_watch ~61
Add an expression to the watch list. The expression will be evaluated each time the process pauses.
| Name | Type | Req | Description |
|---|---|---|---|
| expression | string | yes | The expression to watch (e.g., "x", "obj.prop") |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_continue ~35
Resume execution of a paused debug session until the next breakpoint or program termination.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_detect_hang ~123
Run a command and detect if it hangs or enters an infinite loop. Returns hang status, location, and stack trace if hung.
| Name | Type | Req | Description |
|---|---|---|---|
| args | array | — | Command arguments (e.g., ["test.js"]) |
| command | string | yes | The command to execute (e.g., "node", "npm") |
| cwd | string | — | Working directory for the process |
| sampleInterval | number | — | Sample interval in milliseconds for infinite loop detection (e.g., 100) |
| timeout | number | yes | Timeout in milliseconds (e.g., 5000) |
No output schema declared.
No examples provided.
debugger_get_global_variables ~39
Get global variables accessible from the current scope with their names, values, and types.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_get_local_variables ~39
Get all local variables in the current scope with their names, values, and types.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_get_performance_metrics ~73
Get performance metrics including current memory usage, performance timeline, and leak detection.
| Name | Type | Req | Description |
|---|---|---|---|
| includeLeakDetection | boolean | — | Whether to run memory leak detection (takes 10 seconds) |
| includePerformanceTimeline | boolean | — | Whether to include performance timeline data |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_get_stack ~40
Get the current call stack with function names, file locations (absolute paths), and line numbers.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_get_watches ~39
Get all watched expressions with their current values. Reports value changes since the last pause.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_inspect ~61
Evaluate a JavaScript expression in the current execution context and return the result with type information.
| Name | Type | Req | Description |
|---|---|---|---|
| expression | string | yes | The JavaScript expression to evaluate (e.g., "x + 1") |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_inspect_object ~81
Inspect an object by its object reference, returning properties with values. Handles nested objects and arrays up to a specified depth.
| Name | Type | Req | Description |
|---|---|---|---|
| maxDepth | number | — | Maximum depth to traverse (default: 2) |
| objectId | string | yes | The object ID (from a previous inspection or evaluation) |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_list_breakpoints ~42
Get all breakpoints for a debug session with their file, line, condition, and enabled state.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_pause ~32
Pause a running debug session and return the current execution location.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_remove_breakpoint ~43
Remove a breakpoint from the debug session.
| Name | Type | Req | Description |
|---|---|---|---|
| breakpointId | string | yes | The breakpoint ID to remove |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_remove_watch ~45
Remove an expression from the watch list.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
| watchId | string | yes | The watch ID (expression) to remove |
No output schema declared.
No examples provided.
debugger_set_breakpoint ~86
Set a breakpoint at a specific file and line number. Optionally provide a condition.
| Name | Type | Req | Description |
|---|---|---|---|
| condition | string | — | Optional condition expression (e.g., "x > 10") |
| file | string | yes | The file path (absolute or relative) |
| line | number | yes | The line number (1-indexed) |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_set_exception_breakpoint ~86
Set an exception breakpoint to pause on caught and/or uncaught exceptions.
| Name | Type | Req | Description |
|---|---|---|---|
| breakOnCaught | boolean | yes | Whether to break on caught exceptions |
| breakOnUncaught | boolean | yes | Whether to break on uncaught exceptions |
| exceptionFilter | string | — | Optional regex pattern to filter exceptions by type/message |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_set_function_breakpoint ~54
Set a function breakpoint to pause when a function with the given name is called.
| Name | Type | Req | Description |
|---|---|---|---|
| functionName | string | yes | Function name or regex pattern to match |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_set_hit_count_condition ~91
Set a hit count condition for a breakpoint. The breakpoint will only pause when the condition is met.
| Name | Type | Req | Description |
|---|---|---|---|
| breakpointId | string | yes | The breakpoint ID |
| operator | string | yes | Hit count operator (==, >, >=, <, <=, % for modulo) |
| sessionId | string | yes | The debug session ID |
| value | number | yes | Hit count value to compare against |
No output schema declared.
No examples provided.
debugger_set_logpoint ~96
Set a logpoint that logs a message without pausing execution. Use {variable} syntax for interpolation.
| Name | Type | Req | Description |
|---|---|---|---|
| file | string | yes | The file path (absolute or relative) |
| line | number | yes | The line number (1-indexed) |
| logMessage | string | yes | Log message template with {variable} interpolation (e.g., "Value is {x}") |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_start ~92
Start a new debug session with a Node.js process. The process will be paused at the start.
| Name | Type | Req | Description |
|---|---|---|---|
| args | array | — | Command arguments (e.g., ["test.js"]) |
| command | string | yes | The command to execute (e.g., "node", "npm") |
| cwd | string | — | Working directory for the process |
| timeout | number | — | Timeout in milliseconds (default: 30000) |
No output schema declared.
No examples provided.
debugger_start_cpu_profile ~39
Start CPU profiling for a debug session. Collects CPU profile data for performance analysis.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_step_into ~36
Execute the current line and pause at the first line inside any called function.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_step_out ~34
Execute until the current function returns and pause at the calling location.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_step_over ~36
Execute the current line and pause at the next line in the same scope.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_stop_cpu_profile ~35
Stop CPU profiling and return the profile data with bottleneck analysis.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_stop_session ~38
Stop a debug session, cleanup all resources, and kill the process if still running.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_switch_stack_frame ~68
Switch the execution context to a specific stack frame by index. Frame 0 is the top frame (current location).
| Name | Type | Req | Description |
|---|---|---|---|
| frameIndex | number | yes | The frame index (0 = top frame, 1 = caller, etc.) |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_take_heap_snapshot ~35
Take a heap snapshot for memory analysis. Returns memory usage report.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.
debugger_toggle_breakpoint ~44
Toggle a breakpoint between enabled and disabled states.
| Name | Type | Req | Description |
|---|---|---|---|
| breakpointId | string | yes | The breakpoint ID to toggle |
| sessionId | string | yes | The debug session ID |
No output schema declared.
No examples provided.