Getting started¶
This page takes you from nothing to your first crash dump analysis. It uses VS Code with GitHub Copilot. Other clients work the same way once the server is configured, see Client configuration.
Using Claude Code?
Skip the VS Code steps - register the server with one command and jump straight to Analyze your first dump:
1. Check the prerequisites¶
You need a 64-bit Windows machine with:
-
Debugging Tools for Windows, which ships
cdb.exe. The simplest install is WinDbg from the Microsoft Store:Alternatively install the Windows SDK or WDK and tick Debugging Tools for Windows. The server auto-detects
cdb.exein the usual locations; if yours is elsewhere, you will pass--cdb-pathlater. -
Python 3.10+, then install the server:
-
VS Code with the GitHub Copilot extension, and MCP enabled (step 3).
Quick sanity check
Confirm cdb.exe is reachable before you start:
If that fails, note the full path to cdb.exe and pass it with --cdb-path.
2. Configure the server in VS Code¶
Create .vscode/mcp.json in your workspace:
{
"servers": {
"mcp_windbg": {
"type": "stdio",
"command": "python",
"args": ["-m", "mcp_windbg"],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}
The _NT_SYMBOL_PATH line points the debugger at the Microsoft symbol server (cached under
C:\Symbols), which is what makes stack traces readable. Adjust as needed, see
Command-line options for symbol and CDB path handling.
Escape backslashes in JSON
JSON treats \ as an escape character. Write Windows paths with doubled backslashes
(C:\\Symbols) or forward slashes.
3. Enable MCP in Copilot¶
- Open VS Code settings (Ctrl+,).
- Search for MCP.
- Enable Model Context Protocol in Copilot Chat.
- Restart VS Code so it picks up
.vscode/mcp.json.
4. Analyze your first dump¶
Open Copilot Chat (agent mode) and ask, in plain language:
Copilot calls the open_cdb_dump tool, which runs the common triage commands and returns
the crash information, the !analyze -v result, the stack trace, modules, and threads. From
there you keep asking:
Show the call stack with kb and explain the access violation
Run .ecxr then u to disassemble around the fault
Check the heap around 0x1f2a0040 with !heap -p -a 0x1f2a0040
Each request becomes a run_cdb_command call against the same open session. When you are
done, ask it to close the session to free the cdb.exe process:
Where to go next¶
- Analyze a crash dump - the dump workflow in depth.
- Debug a remote target - connect to a live session and break in.
- Triage multiple dumps - scan a folder and compare.
- Debug from another machine - run the server over HTTP and connect remotely.
- Redact sensitive data - filter secrets out of tool output.
- Command-line options - every CLI flag and transport.
- Tools - the MCP tools and their parameters.
- Client configuration - Claude Desktop, Copilot CLI, pip, and source installs.
- Troubleshooting - when something does not work.