MCP Catalogs
Home

mcp-windbg

by svnscha·1,288·Score 55

MCP server that bridges AI models with WinDbg for Windows crash dump analysis and remote debugging.

developer-toolsai-llmsecurity
122
Forks
10
Open issues
1 mo ago
Last commit
2d ago
Indexed

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:

you:Automated Windows crash dump analysis through natural language queries
you:Remote debugging assistance for live Windows applications
you:Batch processing of multiple crash dumps to identify patterns
you:What debugging tools are required?
you:Can I use this with any MCP client?

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 README
  • list_windbg_dumps

    List crash dump files

  • open_windbg_dump

    Analyze crash dumps

  • close_windbg_dump

    Cleanup dump sessions

  • open_windbg_remote

    Connect to remote debugging

  • close_windbg_remote

    Cleanup remote sessions

  • run_windbg_cmd

    Execute WinDbg commands

  • send_ctrl_break

    Break into a running target

Comparable tools

windbgcdbgdb-mcplldb-mcp

Installation

Installation

  1. Install Debugging Tools for Windows or WinDbg from Microsoft Store
  2. Install Python 3.10 or higher
  3. Install the MCP server:
pip install mcp-windbg

Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.