Skip to content
VS Code

x64dbg for VS Code

io.github.bromoket/x64dbg

MCP server for x64dbg debugger - 23 mega-tools for AI-powered reverse engineering and debugging

client:VS Code transport:stdio runtime:npm

Install x64dbg in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x64dbg-mcp-host",
      "description": "X64DBG_MCP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x64dbg-mcp-port",
      "description": "X64DBG_MCP_PORT",
      "password": true
    }
  ],
  "servers": {
    "x64dbg": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "x64dbg-mcp-server"
      ],
      "env": {
        "X64DBG_MCP_HOST": "${input:x64dbg-mcp-host}",
        "X64DBG_MCP_PORT": "${input:x64dbg-mcp-port}"
      }
    }
  }
}

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

x64dbg in other clients