x64dbg-mcp-server

x64dbg-mcp-server is a skill for Claude Code, Codex from duty1g/x64dbg-mcp-server. It costs 0 tokens per session (3,583 once invoked), scanned A, original, MIT.

A connection for controlling x64dbg, a Windows debugger used to inspect and analyze running programs, through agent tools.

In plain words
What is it for?
Use it to load or attach to programs, pause execution, inspect memory and registers, and disassemble code during reverse engineering.
Why use it?
It keeps track of whether a program is loaded, paused, or running before each action, reducing mistakes caused by stale debugger state.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to load or attach to programs, pause execution, inspect memory and registers, and disassemble code during reverse engineering.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server
About the project

x64dbg-MCP Server is a native Model Context Protocol plugin that lets AI assistants control the x64dbg debugger over HTTP. It is for reverse engineering and debugging tasks involving breakpoints, stepping, memory, registers, modules, disassembly, and related binary-analysis operations.

duty1g/x64dbg-mcp-server · 1,937 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add duty1g/x64dbg-mcp-server --skill x64dbg-mcp-server
Clone the repo
git clone --depth 1 https://github.com/duty1g/x64dbg-mcp-server

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for x64dbg-mcp-server

README.md
[![agentmods](https://agentmods.dev/badge/skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server/github.svg)](https://agentmods.dev/skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server)
Your own site
<a href="https://agentmods.dev/skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server"><img src="https://agentmods.dev/badge/skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for x64dbg-mcp-server

Your own site · 80×15
<a href="https://agentmods.dev/skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server"><img src="https://agentmods.dev/badge/skills/duty1g/x64dbg-mcp-server/x64dbg-mcp-server.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,583 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.03583
Opus 5 $0.00000 $0.01792
Sonnet 5 $0.00000 $0.00717
Haiku 4.5 $0.00000 $0.00358

Measured 12d ago against content hash d15cfc0d27f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

x64dbg-mcp-server scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

SKILL.md · 301 lines

How it starts

The opening of the file, as written. The whole thing — 301 lines — stays where its author put it; the contents beside it link to each section on GitHub.

x64dbg Reverse Engineering — MCP Workflow Guide

You are controlling x64dbg through MCP tools.

Transport matters:

  • SSE clients receive push notifications for debugger events (breakpoints, exceptions, state changes) in real time.
  • HTTP clients must poll — call WaitForEvent to long-poll for events, or read the [state] and [event:*] lines included in every tool response.

Treat every assumption about debugger state as stale until verified by a tool response.


Rule 1: Always Know Your State

Before every action, call GetDebugState. No exceptions.

  • NO_TARGET — nothing loaded. Use LoadBinary or AttachProcess first.
  • PAUSED — target is stopped. You can read memory, disassemble, inspect registers.
  • RUNNING — target is executing. You CANNOT read memory, disassemble, or inspect anything. Call WaitForPause or PauseDebug first.

Every tool response includes a [state] line at the end showing the current debugger status — PAUSED with address/module/instruction, RUNNING, or NO_TARGET. Always read it. This is your primary state awareness mechanism.

Every tool response may also include [event:*] lines — queued debugger events (breakpoints hit, exceptions, DLL loads) that occurred since your last call. Always read these too.

If the user says "paused", "hit breakpoint", "stopped", or "debugger is paused" — immediately call GetDebugState to see where you are. Do not guess.


Rule 2: Never Assume State Between Calls

MCP is request/response. Between your tool calls, anything can happen — breakpoints can hit, exceptions can fire, the user can interact with the debugger. Every time you are about to act, verify first.

Bad:

SetBreakpoint → run → Disassemble  (wrong: run blocks but verify anyway)

Good:

GetDebugState → SetBreakpoint → run → GetDebugState → Disassemble

Rule 3: Core Workflows

Load and analyze a binary

GetDebugState
LoadBinary (path)
WaitForPause            — target pauses at system breakpoint
GetDebugState           — confirm PAUSED, note the address
GetAllRegisters         — see initial state
ListModules             — see what's loaded
Disassemble             — look at current code

Read the full file on GitHub · 301 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 301 lines · 0 tokens per session scan A d15cfc0d27f1

Subscribe to this mod's changes

x64dbg-mcp-server is a skill published in the GitHub repository duty1g/x64dbg-mcp-server (1,937 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,583 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

IDA-Skill

A skill for reverse-engineering software with IDA Pro, a program for examining compiled applications. It uses IDAPython scripts to inspect disassembly, decompiled code, strings, imported functions, and references between code locations.

miunasu/IDA-Skill · 40 tokens

reverse-engineering-workbench

Coordinate EVOKORE reverse-engineering work across Ghidra-style static analysis, semantic recovery, and debugger-guided triage. Use when opening an unfamiliar binary, planning a decompilation workflow, or choosing between static and dynamic analysis paths.

mattmre/EVOKORE-MCP-PUBLIC · 55 tokens

ida-reverse-engineering

Drive IDA Pro through the IDA Pro MCP like a senior reverse engineer: don't just narrate decompiler output, transform the database. Use this whenever the user is reverse engineering, analyzing malware, working a crackme or CTF, or doing binary/firmware analysis with IDA Pro over an MCP connection (mrexodia/ida-pro-mcp…

Newmcpe/ida-reverse-engineering-skill · 243 tokens

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware using Ghidra with specialized scripts for function recovery, string extraction, and type reconstruction in stripped Go binaries.

Mikaru0Mystic/sectinel · 40 tokens

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware in Ghidra by parsing Go buildinfo and pclntab structures, recovering stripped/obfuscated function names (e.g. via GoResolver), and extracting embedded module/dependency strings and types from Go binaries. Use when analyzing a Go-language malware sample, deobfuscating a…

mukul975/Anthropic-Cybersecurity-Skills · 95 tokens

debug-live

Guides root-cause investigations with debugging capabilities by setting breakpoints, starting a debug session, stepping through execution, inspecting variables, and tracing symptoms back to their origin. Prefer it for runtime bugs, failing tests, exceptions, crashes, hangs, wrong/null values, and unexpected output…

microsoft/DebugMCP · 84 tokens