cpp-debug-mcp
Provides tools for debugging C++ programs using the GNU Debugger (GDB), including session management, breakpoints, stepping, backtrace, variable inspection, and expression evaluation.
Provides tools for static analysis of C++ code using clangd (part of the LLVM project), including diagnostics, hover information, go-to-definition, references, and document symbols.
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., "@cpp-debug-mcpdebug segfault in my program and show backtrace"
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.
cpp-debug-mcp
A Claude Code MCP server plugin for C++ debugging. Integrates GDB (via GDB/MI) and clangd (via LSP) to give Claude Code tools for stepping through code, inspecting variables, reading diagnostics, and correlating runtime state with static analysis — all from the conversation.
Prerequisites
Related MCP server: GDB MCP Server
Quick Start
Register the MCP server globally (all projects, auto-updates):
claude mcp add --scope user cpp-debug -- uvx cpp-debug-mcpThat's it. Verify with /mcp inside Claude Code to confirm the server is connected.
Installation Options
Auto-updating via uvx (recommended)
No install step needed — uvx fetches the latest version from PyPI on each invocation. Just register with the command above.
From PyPI
pip install cpp-debug-mcpFrom GitHub
pip install git+https://github.com/William-An/cpp-debug-mcp.gitFrom source (for development)
git clone https://github.com/William-An/cpp-debug-mcp.git
cd cpp-debug-mcp
uv venv .venv
source .venv/bin/activate
uv pip install -e ".[dev]"Register with Claude Code
Global (all projects)
claude mcp add --scope user cpp-debug -- uvx cpp-debug-mcpPer-project (CLI)
claude mcp add cpp-debug -- uvx cpp-debug-mcpPer-project (.mcp.json)
{
"mcpServers": {
"cpp-debug": {
"type": "stdio",
"command": "uvx",
"args": ["cpp-debug-mcp"]
}
}
}Scope | Flag | Config file | Availability |
User |
|
| All projects, private to you |
Project |
|
| This project, shared via git |
Local | (default) |
| This project, private to you |
Tools
GDB Tools (16)
Tool | Description |
| Start a GDB session for a compiled executable |
| End a session and clean up |
| Start execution (optionally stop at |
| Set a breakpoint by file:line, function, or address |
| Delete a breakpoint by ID |
| List all active breakpoints |
| Continue until next breakpoint or exit |
| Step into, over, or out of functions |
| Get the call stack |
| List local variables in a stack frame |
| Evaluate a C++ expression (e.g. |
| Read raw memory at an address |
| List all threads and their states |
| Execute a raw GDB command (with safety restrictions) |
| Open an interactive GDB console via tmux (requires tmux) |
| Close the interactive GDB console |
LSP/clangd Tools (8)
Tool | Description |
| Start a clangd session for a project |
| End a clangd session |
| Get compile errors and warnings for a file |
| Get type/documentation info at a position |
| Find where a symbol is defined |
| Find all references to a symbol |
| List all symbols in a file |
| Get function signature help at a call site |
Combined Tools (3)
Tool | Description |
| GDB runtime value + clangd type info for a variable |
| Backtrace + local variables + LSP diagnostics at crash |
| Breakpoint + signature + references + locals for a function |
Example Usage
Compile your C++ program with debug symbols, then ask Claude Code to debug it:
> Compile main.cpp with debug symbols and find why it segfaults
Claude will:
1. Run g++ -g -O0 -o main main.cpp
2. Call gdb_start_session with the executable
3. Call gdb_run to execute until the crash
4. Call diagnose_crash_site to get the full crash report
5. Explain the root cause with backtrace, variable values, and type infoArchitecture
src/cpp_debug_mcp/
├── server.py # FastMCP entry point with lifespan management
├── gdb/
│ ├── controller.py # Async GDB/MI subprocess wrapper (pygdbmi)
│ └── session.py # Session lifecycle (max 4, 30min timeout)
├── lsp/
│ ├── client.py # Async JSON-RPC client for clangd over STDIO
│ ├── protocol.py # LSP message helpers and response parsers
│ └── session.py # Session lifecycle (max 2, 30min timeout)
├── analysis/
│ └── correlator.py # Cross-references GDB runtime + LSP static info
└── tools/
├── fmt.py # Human-readable output formatting
├── gdb_tools.py # 16 GDB MCP tools (incl. interactive console)
├── lsp_tools.py # 8 LSP MCP tools
└── combined_tools.py # 3 combined analysis toolsSafety
Command sanitization:
gdb_raw_commandblocksshell,!,python,pipe, andsourcecommandsResource limits: Max 4 GDB sessions and 2 LSP sessions concurrently
Auto-cleanup: Stale sessions are cleaned up after 30 minutes of inactivity
Process lifecycle: All subprocesses are terminated on server shutdown
Running Tests
source .venv/bin/activate
uv pip install -e ".[dev]"
python -m pytest tests/ -vGDB tests require gdb to be installed. LSP tests require clangd. Tests that need unavailable tools are automatically skipped.
License
MIT
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
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/William-An/cpp-debug-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server