DebugBundle
MCP

MCP Server

Connect AI coding agents to DebugBundle via the Model Context Protocol.

The DebugBundle MCP server exposes debugging tools that AI agents (GitHub Copilot, Cursor, Cline, and others) can call directly. Instead of switching between your IDE and a dashboard, your agent can query incidents, retrieve bundles, inspect aggregate product usage and AnalyticsBundles, manage tokens, and run reproductions inline.

What is MCP?

The Model Context Protocol is an open standard for connecting AI assistants to external tools. MCP servers expose typed tool definitions that agents discover and invoke during conversations.

DebugBundle implements an MCP server that wraps the same domain services used by the API and CLI, ensuring consistent behavior across all interfaces.

Supported Node.js versions: 22.x through 26.x.

Official Registry

Available on the official MCP Registry as com.debugbundle/mcp.

Install and Use

Run the MCP server directly with npm:

npx @debugbundle/mcp

Or install it globally:

npm install -g @debugbundle/mcp
debugbundle-mcp

The package ships MCP Registry metadata as server.json with server name com.debugbundle/mcp.

DebugBundle does not currently publish a hosted Remote MCP connector. The supported public MCP path is the local stdio package.

Install Matrix

EnvironmentRecommended PathNotes
Generic local MCP clientnpx @debugbundle/mcpstdio transport
Claude Desktop local MCPlocal MCP server configuses local machine auth/config
Claude Code plugin/plugin marketplace add debugbundle/debugbundlebundled MCP config and DebugBundle skill
CursorMCP config with npx @debugbundle/mcpstdio transport
VS Code / GitHub MCP Registrycom.debugbundle/mcpofficial registry metadata
OpenClaw / ClawHubDebugBundle skill plus MCP configuse the published skill for workflow guidance
CI/headless agentsDEBUGBUNDLE_MEMBER_TOKENnever use a project token
Self-hosted DebugBundleDEBUGBUNDLE_API_URL plus member authpoints the server at your API base URL

Authentication

The MCP server supports three authentication modes:

ModeHow it WorksUse Case
LocalUses CLI auth state from ~/.debugbundle/auth.jsonDefault for local development
Environment tokenReads DEBUGBUNDLE_MEMBER_TOKEN from the MCP server environmentMarketplace-managed, remote, and headless clients
Bearer TokenPass bearerToken parameter on tool callsCI/CD, remote agents, headless environments

When running locally alongside the CLI, the MCP server automatically picks up your authenticated session. No additional configuration is required.

If the CLI is not authenticated yet, bootstrap it first with any of these paths:

debugbundle login
debugbundle login dbundle_mem_xxxxxxxxxxxx
debugbundle login --github
debugbundle login --github-device

debugbundle login with no flags opens an interactive chooser in a TTY. --github first tries an existing gh auth token for a fully headless agent flow, then falls back to GitHub device flow when browser approval is needed. Email-code signup and manual token creation remain available in the web app for users who do not use GitHub.

For remote, marketplace-managed, or headless environments, prefer setting the member token in the MCP server environment:

{
  "mcpServers": {
    "debugbundle": {
      "command": "npx",
      "args": ["@debugbundle/mcp"],
      "env": {
        "DEBUGBUNDLE_MEMBER_TOKEN": "dbundle_mem_a1b2c3d4..."
      }
    }
  }
}

Use DEBUGBUNDLE_API_URL in the same environment block only for self-hosted or non-production API hosts. Individual tool calls can still pass a member token as bearerToken:

{
  "tool": "list_incidents",
  "arguments": {
    "bearerToken": "dbundle_mem_a1b2c3d4...",
    "limit": 5
  }
}

Configuration

Claude Desktop

Open Claude Desktop Settings > Developer, edit the local MCP configuration, and add:

{
  "mcpServers": {
    "debugbundle": {
      "command": "npx",
      "args": ["-y", "@debugbundle/mcp"]
    }
  }
}

Restart Claude Desktop after saving. The local server can reuse debugbundle login auth state on the same machine. For managed/headless setups, set DEBUGBUNDLE_MEMBER_TOKEN in the MCP server environment. Set DEBUGBUNDLE_API_URL only for self-hosted or non-default API hosts.

Claude Code Plugin

Claude Code can install DebugBundle from the first-party marketplace hosted in the DebugBundle repository:

/plugin marketplace add debugbundle/debugbundle
/plugin install debugbundle@debugbundle

The plugin bundles the local MCP server config and a DebugBundle workflow skill. If Claude Code does not connect the MCP server immediately after install, run:

/reload-plugins

The plugin package is also prepared for Claude community marketplace review. Until Anthropic accepts it into anthropics/claude-plugins-community, install from the DebugBundle repository marketplace above rather than @claude-community.

VS Code (GitHub Copilot)

Add to your VS Code settings or .vscode/mcp.json:

{
  "mcp": {
    "servers": {
      "debugbundle": {
        "command": "npx",
        "args": ["@debugbundle/mcp"]
      }
    }
  }
}

Cursor

Add to your Cursor MCP configuration:

{
  "mcpServers": {
    "debugbundle": {
      "command": "npx",
      "args": ["@debugbundle/mcp"]
    }
  }
}

Generic MCP Client

Any MCP-compatible client can connect over stdio with the published package:

npx @debugbundle/mcp

The server communicates over stdin/stdout using the MCP JSON-RPC protocol.

Troubleshooting

SymptomCheck
Node.js launch failureUse Node.js 22.x through 26.x. If the client launches an older runtime, point the MCP command at a supported node or npx installation.
Missing local authRun debugbundle login on the same machine, or set DEBUGBUNDLE_MEMBER_TOKEN in the MCP server environment for headless and managed clients.
Invalid tokenUse a member token that starts with dbundle_mem_. Project tokens are write-only SDK ingestion credentials and are not valid for MCP retrieval or management.
Wrong API hostOmit DEBUGBUNDLE_API_URL for DebugBundle Cloud. Set it only for self-hosted, staging, or other non-default API hosts.
Local repo not initializedRun debugbundle setup in the repository before using local-only diagnostics, local bundle analysis, or generated project-skill workflows. Hosted incident and bundle retrieval can still work with member auth.

Tool Categories

The MCP server provides 117 tools organized into these categories:

CategoryToolsDescription
Setup & Diagnostics5Validate connectivity and local setup
Incident Retrieval10Query, inspect, retrieve evidence, and manage incidents
Product analytics22Query aggregate usage, journeys, funnels, opportunities, settings, and analytics bundles
Improvements8Review improvement opportunities, bundles, lifecycle, and settings
GitHub Automation10Manage repository assignments, dispatch rules, and deliveries
Token Management6Create and manage project/member tokens
Webhook Management7Configure webhook endpoints and deliveries
Slack Destinations4Connect, test, and remove Slack destinations
Weekly Reports4Manage scheduled weekly report delivery
Alert Management4Create and manage alert rules
Projects4Create, list, update, and delete projects
Capture Controls8Manage capture policy, rules, and incident-derived suggestions
Health Checks8Manage hosted availability checks and retained status history
Probes3Activate, list, and deactivate debug probes
Billing5Manage subscriptions, trials, and capacity
Members7Manage project collaborators and invitations
Services1List discovered services
Analysis1Run deep incident analysis

See the MCP Tools Reference for the complete tool catalog with parameters, and MCP Workflows for practical agent workflow patterns.

Next Steps

On this page