@debugai/mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@debugai/mcpdebug this TypeScript error"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@debugai/mcp
DebugAI as an MCP server. Your agent hands an error to debug_error and gets
back the root cause plus up to 3 ranked fixes with code patches. Works in
Claude Desktop, Claude Code, Cursor, Zed, Windsurf, and any other MCP client.
Until now this server only shipped inside the DebugAI VS Code extension. This package is the same server, standalone. No VS Code required.
Setup
Create a free account at debugai.io (10 debugs/day, no card).
Copy your API key (
dbg_...) from debugai.io/dashboard.Add the server to your MCP client (snippets below). Node 18+ required.
Set the key once for every client (optional)
Instead of repeating the key in each client's env block, write it to
~/.debugai/config.json:
{ "api_key": "dbg_your_key_here" }Every MCP client launching npx -y @debugai/mcp picks it up — you can then
drop the env block from the snippets below entirely. An explicit
DEBUGAI_API_KEY env var still wins over the file.
Claude Code
claude mcp add debugai --env DEBUGAI_API_KEY=dbg_your_key_here -- npx -y @debugai/mcpClaude Desktop
claude_desktop_config.json (Settings, Developer, Edit Config):
{
"mcpServers": {
"debugai": {
"command": "npx",
"args": ["-y", "@debugai/mcp"],
"env": { "DEBUGAI_API_KEY": "dbg_your_key_here" }
}
}
}Cursor
~/.cursor/mcp.json (or .cursor/mcp.json per project):
{
"mcpServers": {
"debugai": {
"command": "npx",
"args": ["-y", "@debugai/mcp"],
"env": { "DEBUGAI_API_KEY": "dbg_your_key_here" }
}
}
}Zed
settings.json:
{
"context_servers": {
"debugai": {
"command": {
"path": "npx",
"args": ["-y", "@debugai/mcp"],
"env": { "DEBUGAI_API_KEY": "dbg_your_key_here" }
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"debugai": {
"command": "npx",
"args": ["-y", "@debugai/mcp"],
"env": { "DEBUGAI_API_KEY": "dbg_your_key_here" }
}
}
}VS Code
You don't need this package. The DebugAI extension registers the MCP server automatically (VS Code 1.101+) and adds one-click fix apply, proactive scan, and codebase indexing on top.
Related MCP server: Moth
The tools
debug_error
Give it an error, get an analysis.
Input | Required | Description |
| yes | Full error message, exception, or stack trace. |
| no |
|
| no | Code around the failing line, if the agent has it. |
| no | Path to the file that threw. |
Returns the root cause, up to 3 fixes ranked by confidence, the detected
framework, and whether the answer came from cache. Since 2.0 each fix also
carries, where derivable: edits (exact old/new strings your agent's edit
tool can apply directly), unified_diff, and verify_with (a syntax-level
check command to run after applying). Read-only: it never touches your
files. Applying a fix is your agent's (and your) call.
Every fix is labeled with its verification state, and there are three of them, not two: verified (a mechanical check passed — currently parse/import classes), failed check (confidence capped hard), or not verified (the confidence number is the model's own estimate — nothing checked it). We label the third case instead of hiding it.
report_outcome
Tell DebugAI whether an applied fix actually worked.
Input | Required | Description |
| yes | The |
| yes |
|
| no | Which ranked fix was applied (1-3). |
| no | If it failed: the error you saw after applying. |
Confirmed rank-1 fixes are remembered per project (the next hit on the same error starts from the confirmed fix); failed-fix follow-ups are the feedback that improves future answers. Agents are asked to call this once per applied fix — same pipeline human feedback flows through in the VS Code extension.
Example, in Claude Code:
Paste a traceback and ask "why is this failing?". Claude calls
debug_errorand gets back something like:Root cause:
db.sessionis used after the request context closed. Fix 1 (94% confidence): move the query inside the request handler...
Environment variables
Variable | Default | Description |
| (none) | Your API key. Falls back to |
| DebugAI production | Override for self-hosted or staging setups. Falls back to |
|
| Per-request deadline. Deep analyses can take 30-90s. |
|
| Alternate config file location. Rarely needed. |
Limits and honesty
Free tier: 10 debugs/day. Pro ($12/mo): 1,000/mo soft cap, never hard-blocked at it.
When you hit the daily cap the tool says so and stops. It will not silently retry.
Simple errors route to a fast model; ugly cross-file ones route to a stronger one on paid tiers. The
Model:badge in each response tells you which one answered.Analyses run on DebugAI's servers. The error text and any snippet you pass are sent there. Privacy policy: debugai.io/privacy.
Troubleshooting
"authentication failed": key missing or wrong. Check the
envblock in your client config or~/.debugai/config.json, restart the client. Keys start withdbg_.Nothing happens on
npx @debugai/mcp: correct. It's a stdio server that waits for an MCP client to speak first. Runnpx @debugai/mcp --helpto verify the install.Timeouts: deep analyses can take up to 90s. If your client has its own tool timeout, raise it above that.
Development
npm install
npm test # builds, then runs unit + spawned-process e2e testsMIT © DebugAI
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/1shizaan/debugai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server