-
Notifications
You must be signed in to change notification settings - Fork 81
Install in Claude Desktop
Sven Scharmentke edited this page Oct 22, 2025
·
2 revisions
Install and configure mcp-windbg for Claude Desktop application with Model Context Protocol support.

See Prerequisites Guide for complete setup including:
- uv installation
- Windows Debugging Tools (WinDbg/CDB)
- Symbol server configuration
The recommended way to install mcp-windbg with Claude Desktop using uvx which handles installation automatically.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-windbg": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/svnscha/mcp-windbg",
"mcp-windbg"
],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}The claude_desktop_config.json file is located at:
C:\Users\{YourUsername}\AppData\Roaming\Claude\claude_desktop_config.json
Example:
C:\Users\SvenScharmentke\AppData\Roaming\Claude\claude_desktop_config.json
Or use the environment variable:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-windbg": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/svnscha/mcp-windbg",
"mcp-windbg"
],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols;C:\\MyProject\\Symbols"
}
}
}
}{
"mcpServers": {
"mcp-windbg": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/svnscha/mcp-windbg",
"mcp-windbg",
"--cdb-path",
"C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe"
],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}- Save your
claude_desktop_config.jsonfile - Restart Claude Desktop completely
- Look for the mcp-windbg server in the server list (if visible)
- Test with: "List available crash dumps"
- Try: "Analyze crash dump at C:\dumps\crash.dmp"
uvx command not found:
- Install uv: Follow Prerequisites Guide
- Ensure uv is in your PATH
Server not appearing:
- Restart Claude Desktop completely
- Check Claude Desktop logs for errors
- Verify JSON syntax in
claude_desktop_config.json - Test manual installation:
uvx --from git+https://github.com/svnscha/mcp-windbg mcp-windbg --help
Symbol loading fails:
- Check
_NT_SYMBOL_PATHformat - Ensure network access to Microsoft symbol servers
- Test symbol path:
set _NT_SYMBOL_PATH=...then runcdb.exe
Connection errors:
- Verify WinDbg/CDB is installed and accessible
- Check Windows permissions for debugging tools
- Try custom
--cdb-pathif using non-standard installation
For more information about connecting local MCP servers to Claude Desktop, see: Model Context Protocol - Connect Local Servers