X64dbg MCP Server

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

Local serverstdioTypeScript

What is the X64dbg MCP server?

X64dbg MCP server exists for a simple reason — assistants are far more useful when they can act on X64dbg directly instead of describing what you should do. MCP server for x64dbg debugger - 23 mega-tools for AI-powered reverse engineering and debugging.

What you get

Real use: tracing VMProtect'd code, finding anti-cheat scanner threads, decoding XOR'd class names, mapping detection logic — all by asking, no manual scripting.

What the assistant can call

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

  • Control — run/step/pause, raw commands, scripts, expression eval
  • Stack — call stack, SEH chain, return addresses

Configuration and credentials

You will need one environment variable: X64DBG_MCP_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. X64dbg's toolset — Control, Stack — is a fair guide to whether it matches your workflow. It is maintained by bromoket; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

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.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the x64dbg mcp server does with a few real requests.

Available tools

ToolWhat it does
Controlrun/step/pause, raw commands, scripts, expression eval
Stackcall stack, SEH chain, return addresses

Configuration

VariableDescriptionRequired
X64DBG_MCP_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use X64dbg to Control.
  • Use X64dbg to Stack.

Frequently asked questions

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