dbgmcp
MCP servers for connecting debuggers to AI agents. Supports GDB, LLDB and PDB.
Install / Use
claude mcp add ramenhost -- npx -y github:ramenhost/dbgmcpIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
Customer SupportSupported Platforms
Tags
Skill content
View source on GitHubdbgmcp
A collection of MCP servers to connect various debuggers to LLM agents using Model Context Protocol. Supported debuggers include:
- GDB (GNU Debugger)
- LLDB (LLVM Debugger)
- PDB (Python Debugger)
https://github.com/user-attachments/assets/fa745e69-2bd9-482c-b5f1-59b42e458760
Features
- Separate servers for each debugger. Enable or disable them as needed.
- Load programs into the debugger.
- Execute arbitrary commands in the debugger.
- Supports multiple simultaneous connections.
[!CAUTION] AI agents can execute arbitrary commands inside debuggers, including shell commands. Use at your own risk.
Installation
Simple way is to pick a pre-built binary for your platform from the releases page. Currently, pre-built binaries are available for the following platforms:
- Linux x86_64 (
x86_64-unknown-linux-musl)
The binaries are named according to the debugger they support:
- gdb-mcp
- lldb-mcp
- pdb-mcp.
If pre-built binaries are not available for your platform, you can build the project from source.
Building from source
Requires Rust and Cargo to be installed. You can install them using rustup.
git clone https://github.com/ramenhost/dbgmcp
cd dbgmcp
cargo build --release
This will create MCP server binaries in target/release/ folder.
Usage
Claude Desktop
- Open the Claude desktop settings. Click on “Developer” in the left-hand bar of the settings pane, and then click on “Edit Config”. The will create a
claude_desktop_config.jsonfile and display it in filesystem. - Add required MCP servers to the
claude_desktop_config.json. Below configuration includes all debuggers in Claude (GDB, LLDB and PDB). You can include only the servers you need.
{
"mcpServers": {
"gdb": {
"command": "/path/to/gdb-mcp",
"args": []
},
"lldb": {
"command": "/path/to/lldb-mcp",
"args": []
},
"pdb": {
"command": "/path/to/pdb-mcp",
"args": []
}
}
}
- Restart Claude or refresh the page.
For more details, see Claude docs.
VS Code Github Copilot
- Enable MCP support in VS Code settings. To enable MCP support in VS Code, enable the
chat.mcp.enabledsetting. - Create a
.vscode/mcp.jsonfile in your workspace. - Add required MCP servers to the
mcp.jsonfile. Below configuration includes all debuggers in VS Code (GDB, LLDB and PDB). You can include only the servers you need.
{
"servers": {
"gdb": {
"type": "stdio",
"command": "/path/to/gdb-mcp",
"args": []
},
"lldb": {
"type": "stdio",
"command": "/path/to/lldb-mcp",
"args": []
},
"pdb": {
"type": "stdio",
"command": "/path/to/pdb-mcp",
"args": []
}
}
}
- Restart VS Code or reload the window.
- Now, the debugger tools are avilable in Agent mode of Github Copilot chat.
For more details, see VS Code docs.
Credits
- GDB functionality is rust rewrite of mcp-gdb
Related Skills
Agent-Reach
84.2kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.4kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.0k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
