mcp-windbg
by svnscha·★ 1,288·Score 55
MCP server that bridges AI models with WinDbg for Windows crash dump analysis and remote debugging.
Overview
This MCP server integrates with CDB to enable AI models to analyze Windows crash dumps and connect to remote debugging sessions. It allows executing debugger commands through natural language queries, making complex debugging tasks more accessible. The server supports multiple transport protocols including stdio and HTTP, and provides tools for both crash dump analysis and live debugging scenarios.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when you need AI assistance analyzing Windows crash dumps or performing live debugging sessions with WinDbg/CDB through natural language commands.
When NOT to choose this
Don't choose this if you need to debug non-Windows systems or if you're looking for an automatic crash fixing solution rather than an AI-assisted debugging tool.
Tools this server exposes
7 tools extracted from the READMElist_windbg_dumpsList crash dump files
open_windbg_dumpAnalyze crash dumps
close_windbg_dumpCleanup dump sessions
open_windbg_remoteConnect to remote debugging
close_windbg_remoteCleanup remote sessions
run_windbg_cmdExecute WinDbg commands
send_ctrl_breakBreak into a running target
Comparable tools
Installation
Installation
- Install Debugging Tools for Windows or WinDbg from Microsoft Store
- Install Python 3.10 or higher
- Install the MCP server:
pip install mcp-windbgClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp_windbg": {
"command": "python",
"args": ["-m", "mcp_windbg"],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}FAQ
- What debugging tools are required?
- You need Windows Debugging Tools for Windows or WinDbg from Microsoft Store, and Python 3.10 or higher.
- Can I use this with any MCP client?
- Yes, it's compatible with any MCP-enabled client including GitHub Copilot, Claude Desktop, Cline, Cursor, and Windsurf.
Compare mcp-windbg with
Last updated · Auto-generated from public README + GitHub signals.