X64dbgMCP MCP Server

An MCP server that can bridge various LLMS (Claude and Cursor tested) with the x64dbg debugger, providing direct access to debugging applications

Local serverstdioPython

What is the X64dbgMCP MCP server?

X64dbgMCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. An MCP server that can bridge various LLMS (Claude and Cursor tested) with the x64dbg debugger, providing direct access to debugging applications through prompts. Features (Build from Source for Latest) .

What the assistant can call

Once X64dbgMCP is connected, these are the calls the assistant has available:

  • Cross — Architecture Support** - Works with both x64dbg and x32dbg
  • cmake — S . -B build (will resolve the pluginsdk automatically, so no need to worry about dependencies.)

Setting it up

mcp on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. X64dbgMCP's toolset — Cross, cmake — is a fair guide to whether it matches your workflow. It is maintained by Wasdubya; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the x64dbgmcp mcp server does with a few real requests.

Available tools

ToolWhat it does
CrossArchitecture Support** - Works with both x64dbg and x32dbg.
cmakeS . -B build (will resolve the pluginsdk automatically, so no need to worry about dependencies.)

How to install the X64dbgMCP MCP server

{
  "mcpServers": {
    "x64dbgmcp": {
      "command": "uvx",
      "args": ["mcp"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use X64dbgMCP to Cross.
  • Use X64dbgMCP to cmake.

Frequently asked questions

It connects X64dbgMCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Cross, cmake) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with X64dbgMCP directly.