io.github.bromoket/x64dbg
NPM · X64DBG-MCP-SERVER · SCANNED SEP 25
MCP server for x64dbg debugger - 23 mega-tools for AI-powered reverse engineering and debugging
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →
Supply Chain Security98
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- 31 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 108 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability54
- AI-judged instruction clarity (fair).Partial
- Tool/resource definitions use about 823 tokens (~35/item across 23 items; 23 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management83
- Stability observed for 25 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage77
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 32% of tool parameters carry a description.Partial
Tool Safety75
- No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
- 0 of 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "x64dbg_debug" implies "execute" and declares no destructiveHint at all, which the MCP spec reads as destructive by default. See how to fix → Fail
- An AI judge read all 23 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
How do I install the io.github.bromoket/x64dbg MCP server?
io.github.bromoket/x64dbg runs locally as an npm package, launched with npx -y x64dbg-mcp-server. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.
npm · x64dbg-mcp-server
claude mcp add bromoket-x64dbg -- npx -y x64dbg-mcp-server
{
"mcpServers": {
"bromoket-x64dbg": {
"command": "npx",
"args": [
"-y",
"x64dbg-mcp-server"
]
}
}
} {
"servers": {
"bromoket-x64dbg": {
"command": "npx",
"args": [
"-y",
"x64dbg-mcp-server"
]
}
}
} codex mcp add bromoket-x64dbg -- npx -y x64dbg-mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"bromoket-x64dbg": {
"type": "local",
"command": [
"npx",
"-y",
"x64dbg-mcp-server"
],
"enabled": true
}
}
} openclaw mcp add bromoket-x64dbg --command npx --arg -y --arg x64dbg-mcp-server
mcp_servers:
bromoket-x64dbg:
command: "npx"
args: ["-y", "x64dbg-mcp-server"] {
"McpServers": {
"bromoket-x64dbg": {
"Transport": "stdio",
"Command": "npx",
"Arguments": [
"-y",
"x64dbg-mcp-server"
]
}
}
} assistant mcp add bromoket-x64dbg -t stdio -c npx -a -y x64dbg-mcp-server
{
"mcpServers": {
"bromoket-x64dbg": {
"command": "npx",
"args": [
"-y",
"x64dbg-mcp-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 25 Sept 26 0
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 24 Sept 26 −3
- Stability: pass → 0.80 functional
- 23 Sept 26 +1
- Stability: 0.97 → pass security
- 21 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 90 to 93. That category is still filling its 30-day observation window: 27 days of observed history at the previous scan, 28 at this one. The score rises as the window fills, whether or not the server changes.
- 19 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 83 to 87. That category is still filling its 30-day observation window: 25 days of observed history at the previous scan, 26 at this one. The score rises as the window fills, whether or not the server changes.
- 17 Sept 26 −3
- Stability: pass → 0.80 functional
- 16 Sept 26 +1
- Stability: 0.97 → pass security
- 14 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 90 to 93. That category is still filling its 30-day observation window: 27 days of observed history at the previous scan, 28 at this one. The score rises as the window fills, whether or not the server changes.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 25 Sept 2026 · Analysed npm/x64dbg-mcp-server@2.3.0
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | npm |
Background: How many MCP packages publish verified provenance →
Dependencies 96 packages
| Packages resolved | 96 |
|---|---|
| Stale | 31 |
| Tree resolution | Complete |
Background: SBOMs and build attestations, explained →
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →
x64dbg_address_convert ~82
Convert Virtual Address (VA) to File Offset, or File Offset to VA
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Conversion direction |
| address | string | – | Virtual address (required for va_to_file) |
| module | string | – | Module name (required for file_to_va) |
| offset | string | – | File offset hex (required for file_to_va) |
No output schema declared.
No examples provided.
x64dbg_analysis ~54
Get function info, xrefs, basic blocks or source location for an address
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Information to get |
| query | string | – | Address to look up (or mnemonic for mnemonic_brief) |
No output schema declared.
No examples provided.
x64dbg_antidebug ~35
Anti-debugging analysis: Read PEB/TEB/DEP, or hide debugger
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_breakpoints ~35
Unified tool for all breakpoint operations (set, get, list, configure, toggle, remove)
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_command ~31
Execute x64dbg commands, scripts, eval expressions, or manage debug session
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_control_flow ~28
Get CFG/branch/loop info or manage function definitions
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_database ~53
List known constants, error codes, defined structs, or search strings in a module
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Type of list to retrieve |
| module | string | – | Module name (required for strings action) |
No output schema declared.
No examples provided.
x64dbg_debug ~30
Execute core debugger actions (run, pause, step, state, etc.)
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_disassembly ~31
Disassemble or assemble instructions (at address, function, info, assemble)
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_dumping ~34
Dump modules, fix IAT, or get PE header/sections/imports/exports
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_exceptions ~30
Manage exception breakpoints, list Windows exception codes, or skip exceptions
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_handles ~32
List handles/tcp/windows/heaps, get handle name, or close a handle
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_memory ~33
Core memory operations: read, write, info, allocate, free, protect, map
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_modules ~32
List modules or get info (base, section, party) for a specific module
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_patches ~27
List, apply, restore patches or export patched module
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_process ~36
Get process info (basic, detailed, cmdline, elevated, dbversion) or set cmdline
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_registers ~35
Get or set CPU register values (all, specific, flags, avx512, set)
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_search ~28
Pattern/string search, symbol autocomplete, or get string at address
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_stack ~31
Stack operations: call stack, read raw, get pointers/SEH/comments
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_symbols ~25
Symbol, label, comment, and bookmark operations
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_threads ~36
Thread operations: list, get current/specific/teb/name, or switch/suspend/resume
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_tracing ~33
Execution tracing operations: step into/over, run, animate, get trace info
| Name | Type | Req | Description |
|---|---|---|---|
| action | – | yes | – |
No output schema declared.
No examples provided.
x64dbg_watchdog ~32
Check if a watch expression watchdog has been triggered
| Name | Type | Req | Description |
|---|---|---|---|
| id | string | – | Watch ID (decimal) |
No output schema declared.
No examples provided.
What is the io.github.bromoket/x64dbg MCP server?
io.github.bromoket/x64dbg is an MCP server listed in the public MCP registry as io.github.bromoket/x64dbg. MCP server for x64dbg debugger - 23 mega-tools for AI-powered reverse engineering and debugging. This page covers its npm package (x64dbg-mcp-server).
Is the io.github.bromoket/x64dbg MCP server safe to use?
io.github.bromoket/x64dbg scores 74 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 25 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.
What tools does the io.github.bromoket/x64dbg MCP server expose?
io.github.bromoket/x64dbg exposes 23 tools: x64dbg_debug, x64dbg_registers, x64dbg_memory, x64dbg_disassembly, x64dbg_breakpoints, and 18 more. Their descriptions and schemas cost roughly 823 tokens of context every time the server is loaded.
Is the io.github.bromoket/x64dbg MCP server still maintained?
io.github.bromoket/x64dbg is still listed as active in the MCP registry. We last reached this channel on 25 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.
What licence is the io.github.bromoket/x64dbg MCP server under?
io.github.bromoket/x64dbg declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.