CDB-MCP
Enables LLMs to perform live debugging, dump analysis, and remote debugging by exposing Microsoft CDB capabilities through MCP. It manages cdb.exe sessions, forwards commands, and returns raw debugger output.
README
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.
Tools
| Tool | Description |
|---|---|
create_session |
Start cdb.exe (launch / attach / dump / remote) |
close_session |
Close or detach a session |
list_sessions |
List active sessions |
execute |
Send a CDB command string; returns status (completed/pending/error) and output |
get_output |
Poll the output buffer of the current pending command (sends no command) |
wait_for_prompt |
Wait for the current pending command to complete |
interrupt |
Send Ctrl+Break to interrupt the running target |
Prerequisites
-
Windows Debugging Tools -- provides
cdb.exe- Install 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 sync
MCP 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 |
|---|---|---|
CDB_MCP_CDB_PATH |
Full path to cdb.exe | Auto-discovered |
CDB_MCP_SYMBOLS_PATH |
Symbol path (semicolon-separated) | Microsoft symbol server |
CDB_MCP_SOURCE_PATH |
Source code path | Empty |
CDB_MCP_MAX_SESSIONS |
Max concurrent sessions | 4 |
CDB_MCP_CMD_TIMEOUT |
Default command timeout (seconds) | 30 |
CDB_MCP_OUTPUT_BUFFER |
Output buffer line count | 1000 |
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\bin
Verification
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/pip - Testing:
pytest
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。