★ 22 stars
Rust
💻 Code/Dev Tools
Updated 9d ago
A WinDbg plugin that turns the current debugging session into an MCP server for command docs, debugger actions, and AI-assisted analysis.
View on GitHub →
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"windbg-mcp-rs": {
"command": "cargo",
"args": [
"run",
"--",
"windbg-mcp-rs"
]
}
}
}
Run in terminal:
claude mcp add windbg-mcp-rs cargo run -- windbg-mcp-rs
Add to .cursor/mcp.json:
{
"mcpServers": {
"windbg-mcp-rs": {
"command": "cargo",
"args": [
"run",
"--",
"windbg-mcp-rs"
]
}
}
}