Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol.

README.md

GhidraMCP

![Build](https://github.com/13bm/GhidraMCP/actions/workflows/build.yml) ![License](LICENSE)

A Ghidra extension that exposes 70 reverse-engineering tools to AI assistants through the Model Context Protocol (MCP). Open a binary in Ghidra, enable the plugin, and let Claude (or any MCP client) decompile functions, rename symbols, annotate code, search for vulnerabilities, and more.

Architecture

 AI Client (Claude Desktop / CLI)
        |  stdio + MCP JSON-RPC
        v
   Go MCP Bridge  (mcp_bridge)
        |  TCP, length-prefixed JSON-RPC
        v
   Ghidra Plugin  (MCPServerPlugin)
        |
        v
   Ghidra Program API

The Ghidra plugin (Java) starts a TCP server inside Ghidra and auto-launches the Go bridge binary. The bridge speaks MCP over stdio to the AI client and forwards calls to the Java plugin over a local TCP socket with 4-byte length-prefixed JSON-RPC framing. Optional API-key authentication protects the TCP channel.

Features

  • 70 MCP tools spanning query, mutation, analysis, malware triage, IoT/embedded security, structure management, async decompilation, and multi-instance support
  • Easy setup -- plugin auto-starts the bridge; use MCP > Settings > Write to Claude Config to configure your MCP client
  • Cross-platform -- prebuilt bridge binaries for Linux x86_64, Windows x86_64, macOS x86_64 and macOS ARM64
  • Configurable -- port, localhost-only binding, API-key auth, auto-start, bridge enable/disable via GhidraMCP.properties
  • Multi-instance -- work with multiple Ghidra windows simultaneously using target_port to route tool calls
  • Async decompilation -- decompile large functions without blocking; poll for results later
  • Connection retry -- the bridge reconnects automatically if Ghidra restarts or the connection drops
  • Pagination -- large result sets (functions, strings, imports, ...) support offset/limit for safe incremental retrieval
  • CI/CD -- automated builds, Go + Java tests, Ghidra integration tests, and auto-release when a new Ghidra version drops

Quick Start

Prerequisites

Install

  1. Download the latest release ZIP from Releases
  2. In Ghidra: File > Install Extensions > "+" > select the ZIP
  3. Restart Ghidra

Enable

  1. Open a project and a program (binary)
  2. File > Configure > GhidraMCP -- check MCPServerPlugin
  3. The plugin auto-starts the TCP server (default localhost:8765) and launches the bridge

To configure Claude Desktop, open MCP > Settings and click Write to Claude Config. For other MCP clients, click Copy to Clipboard and add this to your client config:

{
  "mcpServers": {
    "ghidra": {
      "command": "/path/to/mcp_bridge",
      "args": ["--host", "localhost", "--port", "8765"]
    }
  }
}

If you have an API key set, include it in the env block (the plugin does this automatically):

{
  "mcpServers": {
    "ghidra": {
      "command": "/path/to/mcp_bridge",
      "args": ["--host", "localhost", "--port", "8765"],
      "env": {
        "GHIDRA_API_KEY": "your-key-here"
      }
    }
  }
}

You can also grab the snippet from Ghidra: MCP > Copy MCP Config (copies it to your clipboard).

Tools

Full reference with parameters, types, and examples: TOOLS.md

The tables below give a quick overview. See TOOLS.md for detailed parameter docs.

Query (1-21)

| Tool | Description | |------|-------------| | list_functions | List all functions with entry points, sizes, return types | | list_classes | List all classes / namespaces | | list_imports | List imported symbols and external dependencies | | list_exports | List exported symbols | | list_namespaces | List all namespaces | | list_data_items | List defined data (globals, constants, arrays, structs) | | list_strings | List strings with optional substring filter | | search_functions_by_name | Search functions by name substring | | get_function_by_address | Detailed info for a function at an address | | get_current_address | Address currently selected in Ghidra | | get_current_function | Function at the current cursor position | | decompile_function | Decompile by name to C pseudocode | | decompile_function_by_address | Decompile by address to C pseudocode | | disassemble_function | Raw disassembly listing for a function | | get_xrefs_to | Cross-references TO an address | | get_xrefs_from | Cross-references FROM an address | | get_function_xrefs | All xrefs (callers + callees) for a function | | get_program_info | Program metadata (arch, compiler, format, etc.) | | get_memory_map | Memory layout with segment permissions | | get_variables | Parameters and locals for a function |

Mutation (22-38)

| Tool | Description | |------|-------------| | rename_function | Rename a function by name | | rename_function_by_address | Rename a function by address | | rename_data | Rename a data label | | rename_variable | Rename a local variable | | set_decompiler_comment | Set a decompiler-view comment | | set_disassembly_comment | Set a disassembly-view comment | | set_function_prototype | Set full function prototype | | set_local_variable_type | Change a variable's data type | | set_bookmark | Add a bookmark | | remove_bookmark | Remove a bookmark | | set_equate | Set a named constant on a scalar operand | | create_structure | Create a structure data type | | create_enum | Create an enum data type | | apply_data_type | Apply a data type at an address | | set_namespace | Set namespace or class for a function | | set_calling_convention | Set calling convention for a function | | set_image_base | Set the image base address | | set_memory_permissions | Modify memory block permissions |

Advanced Analysis (39-45)

| Tool | Description | |------|-------------| | patch_bytes | Patch raw bytes at an address | | get_basic_blocks | Get basic blocks for a function | | extract_api_call_sequences | Extract API call sequences for security analysis | | identify_user_input_sources | Find user-input entry points | | generate_call_graph | Hierarchical call graph | | identify_crypto_patterns | Detect crypto implementations | | find_obfuscated_strings | Locate obfuscated strings |

Malware Analysis (46-53)

| Tool | Description | |------|-------------| | search_bytes | Search for byte patterns | | emulate_function | Emulate a function | | extract_iocs | Extract indicators of compromise | | find_dynamic_api_resolution | Detect dynamic API resolution | | detect_anti_analysis | Detect anti-analysis techniques | | add_external_function | Add an external function reference | | get_pe_info | PE header details | | get_elf_info | ELF header details |

IoT / Embedded Security (54-59)

| Tool | Description | |------|-------------| | create_memory_block | Create a memory block | | detect_security_mitigations | Detect binary security mitigations | | find_format_string_vulns | Find format-string vulnerabilities | | find_rop_gadgets | Find ROP gadgets | | detect_control_flow_flattening | Detect control-flow flattening | | mark_code_coverage | Mark code coverage regions |

Utility (60-62)

| Tool | Description | |------|-------------| | get_bookmarks | List bookmarks (optionally by address) | | list_equates | List all equates | | ping | Health-check the connection |

Multi-Instance (63)

| Tool | Description | |------|-------------| | list_ghidra_instances | Scan ports 8765-8774 for running Ghidra instances |

All tools accept an optional target_port parameter to route calls to a specific Ghidra instance. This lets you work with multiple binaries open in separate Ghidra windows simultaneously.

Structure Management (64-68)

| Tool | Description | |------|-------------| | get_structure | Get full details of a structure (fields, offsets, types) | | list_structures | List all defined structures with pagination | | edit_structure | Add, insert, delete, replace, or clear fields in a structure | | rename_structure | Rename an existing structure | | delete_structure | Delete a structure data type |

Async Decompilation (69-70)

| Tool | Description | |------|-------------| | decompile_function_async | Start async decompilation of a large function (returns task ID) | | get_decompile_result | Poll for an async decompilation result by task ID |

Async decompilation is useful for large functions that may take 30+ seconds to decompile. The client can start the decompilation, continue other work, and poll for the result later.

Configuration

The plugin stores settings in GhidraMCP.properties inside Ghidra's user settings directory:

| Property | Default | Description | |----------|---------|-------------| | port | 8765 | TCP port for the Java server | | localhost_only | true | Bind to localhost only | | api_key | (empty) | Shared secret for bridge authentication | | auto_start | true | Start the server when the plugin loads | | bridge_enabled | true | Auto-launch the Go bridge binary |

Settings Dialog

Open MCP > Settings in the Ghidra menu to configure all properties through a GUI. The dialog includes:

  • Editable fields for port, localhost binding, API key, auto-start, and bridge enabled
  • Generate button to create a cryptographically random 32-character API key
  • Write to Claude Config button to merge GhidraMCP into Claude Desktop's claude_desktop_config.json
  • Copy to Clipboard button to copy the MCP config JSON snippet for manual setup
  • Security warning if you enable remote access without an API key
  • Auto-restart prompt if the server is running when you save

Changes are saved to disk when you click OK. You can also edit the properties file directly at the path shown in the dialog.

If auto_start is false, start the server manually from MCP > Toggle Server in the Ghidra menu.

Note: The bridge_enabled setting is for advanced use cases — developers debugging the bridge binary or users with a custom MCP client that talks TCP directly to the Java server. Most users should leave it enabled.

Security

By default the TCP server binds to localhost only and has no API key, which is fine for local single-user use. For stricter setups:

API-Key Authentication

  1. Open MCP > Settings and click Generate to create a random key (or type your own)
  2. Click OK to save — the bridge picks up the key automatically on next start
  3. On connect, the bridge sends an authenticate request with the key before any other calls
  4. The server rejects all non-auth requests until authentication succeeds
  5. After 3 failed attempts the server terminates the connection

The API key is passed to the bridge via the GHIDRA_API_KEY environment variable (not as a CLI flag) to prevent leaking it in the process argument list. When running the bridge manually, set the environment variable:

# Linux/macOS
export GHIDRA_API_KEY="your-key-here"
./mcp_bridge --host localhost --port 8765

# Windows (PowerShell)
$env:GHIDRA_API_KEY = "your-key-here"
.\mcp_bridge.exe --host localhost --port 8765

When an API key is set, the Write to Claude Config and Copy to Clipboard buttons in the Settings dialog include the key in the env block automatically.

Localhost Binding

With localhost_only=true (default), the server only accepts connections from 127.0.0.1. Set to false if you need remote access (e.g., Ghidra on a headless server), but always use an API key when exposing the port beyond localhost.

Remote / Headless Setup

GhidraMCP can serve AI clients running on a different machine. This is useful when Ghidra runs on a headless analysis server while the AI client runs elsewhere.

  1. Open MCP > Settings
  2. Uncheck Localhost Only to accept remote connections
  3. Click Generate to create an API key (always use one for remote access)
  4. Click OK and restart the server

On the remote machine, configure the MCP client to point at the Ghidra host:

{
  "mcpServers": {
    "ghidra": {
      "command": "/path/to/mcp_bridge",
      "args": ["--host", "ghidra-server.local", "--port", "8765"],
      "env": {
        "GHIDRA_API_KEY": "your-key-here"
      }
    }
  }
}

Warning: Always use an API key when exposing the server beyond localhost. Without authentication, anyone who can reach the port has full access to the Ghidra API.

Building from Source

git clone https://github.com/13bm/GhidraMCP.git
cd GhidraMCP

Build the Go bridge

cd mcp-bridge
go build -o mcp_bridge .
cd ..

Build the Ghidra extension

export GHIDRA_INSTALL_DIR=/path/to/ghidra
gradle buildExtension

The extension ZIP will be in dist/.

Run tests

# Go tests
cd mcp-bridge && go test ./... -v && cd ..

# Java unit + integration tests (requires Xvfb on headless Linux)
xvfb-run gradle test -PGHIDRA_INSTALL_DIR=$GHIDRA_INSTALL_DIR

CI/CD

The project uses GitHub Actions for automated builds and releases:

  • build.yml -- Triggered on push/PR to master and on tags. Runs Go tests, cross-compiles the bridge for 4 platforms, runs Java unit + Ghidra integration tests under Xvfb, builds the extension ZIP, and creates GitHub Releases on v* tags.
  • check-ghidra-release.yml -- Runs daily. Detects new Ghidra releases, opens a version-bump PR, auto-approves via GitHub App, and auto-merges if all tests pass.

Contributing

Contributions welcome! Please open issues or submit pull requests.

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/my-feature
  3. Commit your changes
  4. Push and open a Pull Request

License

Apache License 2.0

Acknowledgments

---

GhidraMCP is not affiliated with or endorsed by the NSA or the Ghidra project.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.