MCP Directory
Back

windbg-mcp

by gengstah · Python · ★ 83

An MCP (Model Context Protocol) server that turns all pybag Windows debugger functions into native MCP tools. It lets MCP-compatible clients (Claude Desktop, Claude Code, Cowork, OpenAI Codex CLI, Cursor, and custom agents) control user-mode processes, kernel sessions, and crash dump analysis via structured JSON calls.

Install

pip install git+https://github.com/gengstah/windbg-mcp.git

Auto-generated from the repo's primary language — check the repo's own README for its exact install instructions.

Claude Desktop config

A starting point for your claude_desktop_config.json (auto-generated — the repo's README may specify a published package name or required env vars):

{
  "mcpServers": {
    "windbg-mcp": {
      "command": "uvx",
      "args": [
        "git+https://github.com/gengstah/windbg-mcp.git"
      ]
    }
  }
}

From the README

An MCP (Model Context Protocol) server that exposes every pybag Windows debugger function as a native MCP tool. It gives any MCP-compatible client (Claude Desktop, Claude Code, Cowork, OpenAI Codex CLI, Cursor, and custom agents) full control over user-mode processes, kernel sessions, and crash dump analysis — all through typed tool calls with structured JSON responses. Download the Windows SDK and select **Debugging Tools for Windows** during setup: https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/ --- The server runs as a local stdio process. All clients below launch it…
Read full README on GitHub →

Related ai & ml servers