Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/chacosoldier/compabob/mcp-debugnpx skills add chacosoldier/compabob --skill mcp-debuggit clone --depth 1 https://github.com/chacosoldier/compabobWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00047 | $0.01269 |
| Opus 5 | $0.00023 | $0.00634 |
| Sonnet 5 | $0.00009 | $0.00254 |
| Haiku 4.5 | $0.00005 | $0.00127 |
Grade A, and why
mcp-debug scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **http / sse** — `curl -s -o /dev/null -w "%{http_code}"` the URL. How it starts
The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP Debugger
A diagnostic tool for MCP (Model Context Protocol) server health and tool execution. Helps identify why MCP tools fail, which servers are down, and which servers are unused or redundant.
Reads MCP config from the two standard locations:
~/.claude.json— user-scope servers.<project>/.mcp.json— project-scope servers.
Mode detection
Check the arguments:
- No args or
status— health check all configured MCP servers. trace <tool-name>— trace a specific tool's configuration and likely failure modes.audit— full audit with recommendations (unused servers, error patterns, consolidation candidates).
Mode 1: Status (default)
Steps
-
List configured servers via the Claude Code CLI:
claude mcp listIf the CLI is unavailable, parse
~/.claude.json(top-levelmcpServers) and./.mcp.jsondirectly. -
For each server, run the lightweight connectivity check appropriate to its transport:
- stdio — confirm the command exists on
$PATH(which <bin>) and the wrapper script is executable. - http / sse —
curl -s -o /dev/null -w "%{http_code}"the URL. - Authenticated remote — a
401or403means reachable, not down. Flag asauthrather thanerror.
- stdio — confirm the command exists on
-
Present a status table:
Server Transport Status Note foo stdio ok bar http auth 401 — token may need refresh baz stdio error binary not on PATH -
For
warning/errorrows, propose the next debugging step (install the binary, refresh the token, check the env var).
Output
## MCP Server Status
[table]
### Issues found
- <server>: <description + suggested fix>
### Summary
[X] ok | [Y] warnings | [Z] errors out of [N] servers
Mode 2: Trace
Steps
-
Parse the tool name from args (e.g.
/mcp-debug trace some-tool). -
Find which server provides this tool. The MCP tool naming convention is
mcp__<server-slug>__<tool-name>; the server slug maps back to a key in~/.claude.jsonor.mcp.json.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 150 lines · 47 tokens per session scan A 6e130f93118c
mcp-debug is a skill published in the GitHub repository chacosoldier/compabob (32 stars, last pushed 2mo ago), licensed MIT. It adds 47 tokens to every session and 1,269 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
agent-code-analyzer
Agent skill for code-analyzer - invoke with $agent-code-analyzer.
agent-collective-intelligence-coordinator
Agent skill for collective-intelligence-coordinator - invoke with $agent-collective-intelligence-coordinator.
agent-orchestrator-task
Agent skill for orchestrator-task - invoke with $agent-orchestrator-task.
agent-payments
Agent skill for payments - invoke with $agent-payments.
add-resend
Add Resend (email) channel integration via Chat SDK.
add-macos-statusbar
Add a macOS menu bar status indicator for NanoClaw. Shows a bolt icon with a green/red dot indicating whether NanoClaw is running, with Start, Stop, and Restart controls. macOS only.