CDB-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., "@CDB-MCPAnalyze the crash dump at C:\dumps\crash.dmp"
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.
CDB-MCP: CDB Debugger MCP Server
Exposes Microsoft CDB (Console Debugger) capabilities through the Model Context Protocol (MCP), enabling LLMs to perform live debugging, dump analysis, remote debugging, and more.
Design Philosophy
The server is a transport layer between the LLM and cdb.exe, not an abstraction layer for CDB commands.
The LLM already has knowledge of CDB/WinDbg commands. The server only does three things:
Manage cdb.exe subprocesses (start/stop/list sessions)
Forward commands and output (LLM sends CDB command string -> forwarded to cdb.exe -> raw text output returned)
Provide Ctrl+Break interrupt (cannot be done via stdin text; requires an OS signal)
It does not wrap specific CDB commands, does not parse output into JSON, and does not restrict command syntax.
Related MCP server: dump-analyzer-mcp-server
Tools
Tool | Description |
| Start cdb.exe (launch / attach / dump / remote) |
| Close or detach a session |
| List active sessions |
| Send a CDB command string; returns status ( |
| Poll the output buffer of the current pending command (sends no command) |
| Wait for the current pending command to complete |
| Send Ctrl+Break to interrupt the running target |
Prerequisites
Windows Debugging Tools -- provides
cdb.exeInstall via Windows SDK: select "Debugging Tools for Windows"
Or install WinDbg Preview from Microsoft Store
Common path:
C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe
Python 3.11+ and uv
Install uv from https://docs.astral.sh/uv/
Installation
git clone https://github.com/cc682/cdb-mcp.git cdb-mcp
cd cdb-mcp
# Create virtual environment and install dependencies
uv venv --python 3.12 .venv
uv syncMCP Client Configuration
VS Code Copilot
Create .vscode/mcp.json in the project root:
{
"servers": {
"cdb-mcp": {
"type": "stdio",
"command": "uv",
"args": [
"run",
"--directory",
"C:\\path\\to\\cdb-mcp",
"python",
"-m",
"cdb_mcp"
],
"env": {
"CDB_MCP_CDB_PATH": "C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe",
"CDB_MCP_SYMBOLS_PATH": "srv*C:\\symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}Claude Desktop
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"cdb-mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"C:\\path\\to\\cdb-mcp",
"python",
"-m",
"cdb_mcp"
],
"env": {
"CDB_MCP_CDB_PATH": "C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe",
"CDB_MCP_SYMBOLS_PATH": "srv*C:\\symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}Replace
C:\\path\\to\\cdb-mcpwith the actual project path.
Environment Variables
Variable | Description | Default |
| Full path to cdb.exe | Auto-discovered |
| Symbol path (semicolon-separated) | Microsoft symbol server |
| Source code path | Empty |
| Max concurrent sessions |
|
| Default command timeout (seconds) |
|
| Output buffer line count |
|
Symbol path format: srv*local_cache_dir*symbol_server;extra_path1;extra_path2
When debugging your own program, add the directory containing your PDB:
srv*C:\symbols*https://msdl.microsoft.com/download/symbols;C:\MyProject\binVerification
After configuration, reload the VS Code window (Ctrl+Shift+P -> Developer: Reload Window).
Type /tools in chat to see the 7 cdb-mcp tools.
If tools are disabled, set their status to Allow in the /tools panel.
Usage Examples
Dump Analysis
1. create_session(type="dump", target="C:\dumps\crash.dmp")
-> returns session_id
2. execute(command="!analyze -v", timeout=600)
-> {"status": "completed", "output": "analysis results..."}
3. execute(command="k")
-> {"status": "completed", "output": "call stack..."}
4. execute(command="lm")
-> returns module list
5. close_session()Live Debugging (Breakpoints)
1. create_session(type="live_launch", target="C:\app\myapp.exe")
2. execute(command="bp myapp!main") -> set breakpoint
3. execute(command="g") -> {"status": "completed"} breakpoint hit
4. execute(command="k") -> view call stack
5. execute(command="dv") -> view local variables
6. execute(command="p") -> single step
7. close_session()Long-Running Commands (Pending Polling)
1. execute(command="g", timeout=2)
-> {"status": "pending", "output": "program starting..."}
2. get_output() -> poll, no command sent
-> {"status": "pending", "output": "tick 1\ntick 2\n...", "command": "g"}
3. get_output() -> keep polling
-> {"status": "pending", "output": "tick 1-10\n...", "command": "g"}
4. interrupt() -> interrupt the running target
-> {"status": "interrupted"}
5. wait_for_prompt(timeout=10) -> wait for prompt
-> {"status": "completed", "output": "post-interrupt output..."}
6. execute(command="k") -> session recovered
-> {"status": "completed", "output": "call stack..."}Tech Stack
Language: Python 3.11+
MCP SDK:
mcp2.0 (official Python SDK)Debug backend:
cdb.exe(Windows Debugging Tools)Package manager:
uv/pipTesting:
pytest
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.
Related MCP Servers
- Flicense-qualityCmaintenanceAn MCP server for debugging Windows processes using WinDbg and CDB. It enables users to attach to processes, manage breakpoints, inspect memory, and control execution flow through natural language.2
- Alicense-qualityCmaintenanceMCP server for remote Windows Crash Dump analysis. Enables AI agents to analyze crash dumps via CDB commands through standard MCP interfaces.2MIT
- Alicense-qualityCmaintenanceEnables AI agents to interact with GDB for debugging via the MCP protocol. Supports setting breakpoints, stepping through code, inspecting memory and registers, and more.85MIT
- AlicenseBqualityBmaintenanceMCP server that wraps gdb to enable LLMs to drive live debugging sessions, including starting sessions on binaries, attaching to processes, and running commands.73MIT
Related MCP Connectors
Agent Replay Debugger MCP — record every agent step + deterministic replay. Step-debugger for
MCP server exposing the Backtest360 engine API as tools for AI agents.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
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/cc682/cdb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server