Skip to content
VS Code

MCP Server for WinDbg Crash Analysis for VS Code

io.github.svnscha/mcp-windbg

A Model Context Protocol server for Windows crash dump analysis using WinDbg/CDB

client:VS Code transport:stdio runtime:pypi

Install MCP Server for WinDbg Crash Analysis in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cdb-path",
      "description": "CDB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "-nt-symbol-path",
      "description": "_NT_SYMBOL_PATH",
      "password": true
    }
  ],
  "servers": {
    "mcp-windbg": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-windbg"
      ],
      "env": {
        "CDB_PATH": "${input:cdb-path}",
        "_NT_SYMBOL_PATH": "${input:-nt-symbol-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

MCP Server for WinDbg Crash Analysis in other clients