Ghidra MCP Server
Bridges Ghidra's reverse engineering capabilities with AI tools through 179 specialized tools for automated binary analysis and documentation. It supports full read/write access for function decompilation, renaming, and cross-binary documentation transfer in both GUI and headless modes.
README
Ghidra MCP Server
If you find this useful, please ⭐ star the repo — it helps others discover it!
A production-ready Model Context Protocol (MCP) server that bridges Ghidra's powerful reverse engineering capabilities with modern AI tools and automation frameworks. 179 MCP tools, battle-tested AI workflows, and the most comprehensive Ghidra-MCP integration available.
Why Ghidra MCP?
Most Ghidra MCP implementations give you a handful of read-only tools and call it a day. This project is different — it was built by a reverse engineer who uses it daily on real binaries, not as a demo.
- 179 MCP tools — 3x more than any competing implementation. Not just read operations — full write access for renaming, typing, commenting, structure creation, and script execution.
- Battle-tested AI workflows — Proven documentation workflows (V5) refined across hundreds of functions. Includes step-by-step prompts, Hungarian notation reference, batch processing guides, and orphaned code discovery.
- Production-grade reliability — Atomic transactions, batch operations (93% API call reduction), configurable timeouts, and graceful error handling. No silent failures.
- Cross-binary documentation transfer — SHA-256 function hash matching propagates documentation across binary versions automatically. Document once, apply everywhere.
- Full Ghidra Server integration — Connect to shared Ghidra servers, manage repositories, version control, checkout/checkin workflows, and multi-user collaboration.
- Headless and GUI modes — Run with or without the Ghidra GUI. Docker-ready for CI/CD pipelines and automated analysis at scale.
🌟 Features
Core MCP Integration
- Full MCP Compatibility — Complete implementation of Model Context Protocol
- 179 MCP Tools — Comprehensive API surface covering every aspect of binary analysis
- Production-Ready Reliability — Atomic transactions, batch operations, configurable timeouts
- Real-time Analysis — Live integration with Ghidra's analysis engine
Binary Analysis Capabilities
- Function Analysis — Decompilation, call graphs, cross-references, completeness scoring
- Data Structure Discovery — Struct/union/enum creation with field analysis and naming suggestions
- String Extraction — Regex search, quality filtering, and string-anchored function discovery
- Import/Export Analysis — Symbol tables, external locations, ordinal import resolution
- Memory & Data Inspection — Raw memory reads, byte pattern search, array boundary detection
- Cross-Binary Documentation — Function hash matching and documentation propagation across versions
AI-Powered Reverse Engineering Workflows
- Function Documentation Workflow V5 — 7-step process for complete function documentation with Hungarian notation, type auditing, and automated verification scoring
- Batch Documentation — Parallel subagent dispatch for documenting multiple functions simultaneously
- Orphaned Code Discovery — Automated scanner finds undiscovered functions in gaps between known code
- Data Type Investigation — Systematic workflows for structure discovery and field analysis
- Cross-Version Matching — Hash-based function matching across different binary versions
Development & Automation
- Ghidra Script Management — Create, run, update, and delete Ghidra scripts entirely via MCP
- Multi-Program Support — Switch between and compare multiple open programs
- Batch Operations — Bulk renaming, commenting, typing, and label management (93% fewer API calls)
- Headless Server — Full analysis without Ghidra GUI — Docker and CI/CD ready
- Project & Version Control — Create projects, manage files, Ghidra Server integration
- Analysis Control — List, configure, and trigger Ghidra analyzers programmatically
🚀 Quick Start
Prerequisites
- Java 21 LTS (OpenJDK recommended)
- Apache Maven 3.9+
- Ghidra 12.0.3 (or compatible version)
- Python 3.8+ with pip
Installation
Recommended for Windows: use
ghidra-mcp-setup.ps1as the primary entry point. It handles prerequisite setup + build + deployment in one command.Important:
-SetupDepsinstalls Maven/Ghidra JAR dependencies only.-Deployis the end-user command and (by default) also ensures Python requirements before build/deploy.
-
Clone the repository:
git clone https://github.com/bethington/ghidra-mcp.git cd ghidra-mcp -
Recommended: run environment preflight first:
.\ghidra-mcp-setup.ps1 -Preflight -GhidraPath "C:\ghidra_12.0.3_PUBLIC" -
Build and deploy to Ghidra (single command):
.\ghidra-mcp-setup.ps1 -Deploy -GhidraPath "C:\ghidra_12.0.3_PUBLIC" -
Optional strict/manual mode (advanced):
# Skip automatic prerequisite setup .\ghidra-mcp-setup.ps1 -Deploy -NoAutoPrereqs -GhidraPath "C:\ghidra_12.0.3_PUBLIC" -
Show script help:
.\ghidra-mcp-setup.ps1 -Help # or Get-Help .\ghidra-mcp-setup.ps1 -Detailed -
Optional build-only mode (advanced/troubleshooting):
# Preferred: script-managed build-only .\ghidra-mcp-setup.ps1 -BuildOnly# Manual Maven build (requires Ghidra deps already installed in local .m2) mvn clean package assembly:single -DskipTests
Installation (Linux — Ubuntu/Debian)
Use
ghidra-mcp-setup.shas the primary entry point on Linux. It handles prerequisite setup, Maven dependency installation, building, and deployment.
-
Clone the repository:
git clone https://github.com/bethington/ghidra-mcp.git cd ghidra-mcp -
Install system prerequisites (if not already installed):
sudo apt update && sudo apt install -y openjdk-21-jdk maven python3 python3-pip curl jq unzip -
Run environment preflight:
./ghidra-mcp-setup.sh --preflight --ghidra-path ~/ghidra_12.0.3_PUBLIC -
Build and deploy to Ghidra (single command):
./ghidra-mcp-setup.sh --deploy --ghidra-path ~/ghidra_12.0.3_PUBLICThis will:
- Install Ghidra JAR dependencies into your local
~/.m2/repository - Build
GhidraMCP-<version>.zipwith Maven - Extract the extension to
~/.config/ghidra/ghidra_<version>_PUBLIC/Extensions/ - Update
preferenceswithLastExtensionImportDirectory - Install Python requirements
- Install Ghidra JAR dependencies into your local
-
Optional: setup only Maven dependencies:
./ghidra-mcp-setup.sh --setup-deps --ghidra-path ~/ghidra_12.0.3_PUBLIC -
Show script help:
./ghidra-mcp-setup.sh --help
Linux paths: The extension is installed to
$HOME/.config/ghidra/ghidra_<version>_PUBLIC/Extensions/GhidraMCP/. Ghidra config files are in$HOME/.config/ghidra/ghidra_<version>_PUBLIC/.
Additional helper scripts (Linux equivalents of the PowerShell utilities):
functions-extract.sh— Extract functions via Ghidra REST API (usescurl/jq)functions-process.sh— Parallel function processing with AI CLI
Basic Usage
Option 1: Stdio Transport (Recommended for AI tools)
python3 bridge_mcp_ghidra.py
Option 2: SSE Transport (Web/HTTP clients)
python3 bridge_mcp_ghidra.py --transport sse --mcp-host 127.0.0.1 --mcp-port 8081
Windows PowerShell equivalents:
py -3 bridge_mcp_ghidra.py
py -3 bridge_mcp_ghidra.py --transport sse --mcp-host 127.0.0.1 --mcp-port 8081
MCP client config templates:
mcp-config.jsonfor macOS/Linux (python3)mcp-config.windows.jsonfor Windows (py -3)
In Ghidra
- Start Ghidra and open a CodeBrowser window
- In CodeBrowser, enable the plugin via File > Configure > Configure All Plugins > GhidraMCP
- Optional: configure custom port via CodeBrowser > Edit > Tool Options > GhidraMCP HTTP Server
- Start the server via Tools > GhidraMCP > Start MCP Server
- The server runs on
http://127.0.0.1:8089/by default
Important deployment note:
- The setup script deploys only the extension ZIP and cleans stale
GhidraMCPfolders/ZIPs in both install-level and%APPDATA%\ghidra\...\Extensions\Ghidrapaths. - This avoids mixed ZIP/JAR states that cause missing menus or "cannot overwrite" errors in Ghidra.
- The deploy flow now validates ZIP contents before install (
GhidraMCP/extension.properties,GhidraMCP/Module.manifest,GhidraMCP/lib/*.jar).
Verify It's Working
# Quick health check
curl http://127.0.0.1:8089/health
# Expected: {"status":"ok","endpoints":147}
# Get version info
curl http://127.0.0.1:8089/get_version
❓ Troubleshooting
"GhidraMCP" menu not appearing in Tools
Cause: Plugin not enabled or installed incorrectly.
Solution:
- Verify extension is installed: File > Install Extensions — GhidraMCP should be listed
- Enable the plugin: File > Configure > Configure All Plugins > GhidraMCP (check the box)
- Restart Ghidra after installation/enabling
Server not responding / Connection refused
Cause: Server not started or wrong port.
Solution:
- Ensure you started the server: Tools > GhidraMCP > Start MCP Server
- Check configured port: Edit > Tool Options > GhidraMCP HTTP Server
- Check if port is in use:
# Linux/macOS lsof -i :8089 # Windows netstat -ano | findstr :8089 - Look for errors in Ghidra console: Window > Console
500 Internal Server Errors
Cause: Server-side exception, often due to missing program data.
Solution:
- Ensure a binary is loaded in CodeBrowser
- Run auto-analysis first: Analysis > Auto Analyze
- Check Ghidra console (Window > Console) for Java exceptions
- Some operations require fully analyzed binaries
404 Not Found Errors
Cause: Endpoint doesn't exist or wrong URL.
Solution:
- Verify endpoint exists:
curl http://127.0.0.1:8089/get_version - Check for typos in endpoint name
- Ensure you're using correct HTTP method (GET vs POST)
Extension not appearing in Install Extensions
Cause: JAR file in wrong location.
Solution:
- Manual install location:
~/.ghidra/ghidra_12.0.3_PUBLIC/Extensions/GhidraMCP/lib/GhidraMCP.jar - Or use: File > Install Extensions > Add and select the ZIP file
- Ensure JAR/ZIP was built for your Ghidra version
Build fails with "Ghidra dependencies not found"
Cause: Ghidra JARs not installed in local Maven repository.
Solution:
# Windows (recommended)
.\ghidra-mcp-setup.ps1 -SetupDeps -GhidraPath "C:\ghidra_12.0.3_PUBLIC"
# Or manual install (see install-ghidra-deps.sh)
📊 Production Performance
- MCP Tools: 179 tools fully implemented
- Speed: Sub-second response for most operations
- Efficiency: 93% reduction in API calls via batch operations
- Reliability: Atomic transactions with all-or-nothing semantics
- AI Workflows: Proven documentation prompts refined across hundreds of real functions
- Deployment: Automated version-aware deployment script
🛠️ API Reference
Core Operations
check_connection- Verify MCP connectivityget_metadata- Program metadata and infoget_version- Server version informationget_function_count- Return total function count for a programget_entry_points- Binary entry points discoveryget_current_address- Get cursor address (GUI only)get_current_function- Get function at cursor (GUI only)get_current_selection- Get current selection context (address + function)read_memory- Read raw bytes from memorysave_program- Save the current programexit_ghidra- Save and exit Ghidra gracefully
Function Analysis
list_functions- List all functions (paginated)list_functions_enhanced- List with isThunk/isExternal flagslist_classes- List namespace/class names (paginated)search_functions_enhanced- Advanced function search with filtersdecompile_function- Decompile function to C pseudocodeforce_decompile- Force fresh decompilation (bypass cache)batch_decompile- Batch decompile multiple functionsget_function_callers- Get function callersget_function_callees- Get function calleesget_function_call_graph- Function relationship graphget_full_call_graph- Complete call graph for programget_function_signature- Get function prototype stringget_function_hash- SHA-256 hash of normalized function opcodesget_bulk_function_hashes- Paginated bulk hashing with filterget_function_jump_targets- Get jump target addresses from disassemblyget_function_metrics- Get complexity metrics for a functionget_function_xrefs- Get function cross-referencesanalyze_function_complete- Comprehensive function analysisanalyze_function_completeness- Documentation completeness scorefind_similar_functions_fuzzy- Fuzzy similarity matchingbulk_fuzzy_match- Bulk fuzzy match across all functionsdiff_functions- Diff two functions side by sidevalidate_function_prototype- Validate a function prototype stringcan_rename_at_address- Check if address can be renameddelete_function- Delete function at address
Memory & Data
list_segments- Memory segments and layoutlist_data_items- List defined data labels and values (paginated)list_data_items_by_xrefs- Data items sorted by xref countget_function_by_address- Function at addressdisassemble_function- Disassembly listingdisassemble_bytes- Raw byte disassemblyget_xrefs_to- Cross-references to addressget_xrefs_from- Cross-references from addressget_bulk_xrefs- Bulk cross-reference lookupanalyze_data_region- Analyze memory region structureinspect_memory_content- View raw memory contentdetect_array_bounds- Detect array boundariessearch_byte_patterns- Search for byte patternscreate_memory_block- Create a new memory block
Cross-Binary Documentation
get_function_documentation- Export complete function documentationapply_function_documentation- Import documentation to target functioncompare_programs_documentation- Compare documentation between programsbuild_function_hash_index- Build persistent JSON indexlookup_function_by_hash- Find matching functions in indexpropagate_documentation- Apply docs to all matching instances
Data Types & Structures
list_data_types- Available data typessearch_data_types- Search for data typesget_data_type_size- Get byte size of a data typeget_valid_data_types- Get list of valid Ghidra builtin typesget_struct_layout- Get detailed field layout of a structurevalidate_data_type- Validate data type syntaxvalidate_data_type_exists- Check if a data type existscreate_struct- Create custom structureadd_struct_field- Add field to structuremodify_struct_field- Modify existing fieldremove_struct_field- Remove field from structurecreate_enum- Create enumerationget_enum_values- Get enumeration valuescreate_array_type- Create array data typecreate_typedef- Create typedef aliascreate_union- Create union data typecreate_pointer_type- Create pointer data typeclone_data_type- Clone a data type with a new nameapply_data_type- Apply type to addressdelete_data_type- Delete a data typeconsolidate_duplicate_types- Merge duplicate typessuggest_field_names- AI-assisted field name suggestions for a structurecreate_data_type_category- Create a category folder in the type managermove_data_type_to_category- Move a type to a different categorylist_data_type_categories- List all data type categoriesimport_data_types- Import types from a GDT/header file
Symbols & Labels
list_imports- Imported symbols and librarieslist_exports- Exported symbols and functionslist_external_locations- External location referencesget_external_location- Specific external location detaillist_strings- Extracted strings with analysissearch_memory_strings- Search strings by regex/substring patternlist_namespaces- Available namespaceslist_globals- Global variablescreate_label- Create label at addressbatch_create_labels- Bulk label creationdelete_label- Delete label at addressbatch_delete_labels- Bulk label deletionrename_label- Rename existing labelrename_or_label- Rename or create label
Renaming & Documentation
rename_function- Rename function by namerename_function_by_address- Rename function by addressrename_data- Rename data itemrename_variables- Rename function variablesrename_global_variable- Rename global variablerename_external_location- Rename external referencebatch_rename_function_components- Bulk renamingset_decompiler_comment- Set decompiler commentset_disassembly_comment- Set disassembly commentset_plate_comment- Set function plate commentget_plate_comment- Get function plate commentbatch_set_comments- Bulk comment settingclear_function_comments- Clear all comments for a functionlist_bookmarks- List all bookmarksset_bookmark- Create or update a bookmarkdelete_bookmark- Delete a bookmark
Type System
set_function_prototype- Set function signatureset_local_variable_type- Set variable typeset_parameter_type- Set parameter typebatch_set_variable_types- Bulk type settingset_variable_storage- Control variable storage locationset_function_no_return- Mark function as non-returningclear_instruction_flow_override- Clear flow override on instructionlist_calling_conventions- Available calling conventionsget_function_variables- Get all function variablesget_function_labels- Get labels in function
Ghidra Script Management
list_scripts- List available scriptsrun_script- Run a scriptlist_ghidra_scripts- List custom Ghidra scriptssave_ghidra_script- Save new scriptget_ghidra_script- Get script contentsrun_ghidra_script- Execute Ghidra script by namerun_script_inline- Execute inline script codeupdate_ghidra_script- Update existing scriptdelete_ghidra_script- Delete script
Multi-Program Support
list_open_programs- List all open programsget_current_program_info- Current program detailsswitch_program- Switch active programlist_project_files- List project filesopen_program- Open program from project
Project Lifecycle
create_project- Create a new Ghidra projectopen_project- Open an existing projectclose_project- Close the current projectdelete_project- Delete a projectlist_projects- List Ghidra projects in a directory
Project Organization
create_folder- Create a folder in the project treemove_file- Move a domain file to another foldermove_folder- Move a folder to another locationdelete_file- Delete a domain file from the project
Analysis Tools
find_next_undefined_function- Find undefined functionsfind_undocumented_by_string- Find functions by string referencebatch_string_anchor_report- String anchor analysisget_assembly_context- Get assembly contextanalyze_struct_field_usage- Analyze structure field accessget_field_access_context- Get field access patternscreate_function- Create function at addressanalyze_control_flow- Cyclomatic complexity and loop detectionanalyze_call_graph- Build function call graphanalyze_api_call_chains- Detect API call threat patternsdetect_malware_behaviors- Detect malware behavior categoriesfind_anti_analysis_techniques- Find anti-analysis techniquesfind_dead_code- Detect unreachable codeextract_iocs_with_context- Extract IOCs from stringsapply_data_classification- Apply data classification to addresses
Analysis Control
list_analyzers- List all available Ghidra analyzersconfigure_analyzer- Enable/disable or configure an analyzerrun_analysis- Trigger Ghidra auto-analysis programmatically
Server Connection (Ghidra Server)
connect_server- Connect to a Ghidra Serverdisconnect_server- Disconnect from Ghidra Serverserver_status- Check server connection statuslist_repositories- List repositories on the servercreate_repository- Create a new repositorylist_repository_files- List files in a server repository folderget_repository_file- Get metadata for a file in a server repository
Version Control
checkout_file- Check out a file from version controlcheckin_file- Check in a file with a commentundo_checkout- Undo a checkout without committingadd_to_version_control- Add a file to version control
Version History
get_version_history- Get full version history for a fileget_checkouts- Get active checkout status
Admin
terminate_checkout- Forcibly terminate a user's checkoutlist_server_users- List all users on the Ghidra Serverset_user_permissions- Set a user's repository access level
See CHANGELOG.md for version history.
🏗️ Architecture
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ AI/Automation │◄──►│ MCP Bridge │◄──►│ Ghidra Plugin │
│ Tools │ │ (bridge_mcp_ │ │ (GhidraMCP.jar) │
│ (AI, etc.) │ │ ghidra.py) │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│ │ │
MCP Protocol HTTP REST Ghidra API
(stdio/SSE) (localhost:8089) (Program, Listing)
Components
- bridge_mcp_ghidra.py — Python MCP server that translates MCP protocol to HTTP calls (179 tools)
- GhidraMCP.jar — Ghidra plugin that exposes analysis capabilities via HTTP (147 GUI endpoints)
- GhidraMCPHeadlessServer — Standalone headless server — 172 endpoints, no GUI required
- ghidra_scripts/ — Collection of automation scripts for common tasks
🔧 Development
Building from Source
# Recommended: one command does setup + build + deploy
.\ghidra-mcp-setup.ps1 -Deploy -GhidraPath "C:\ghidra_12.0.3_PUBLIC"
# Optional: build only (no deploy)
.\ghidra-mcp-setup.ps1 -BuildOnly
# Version bump (updates all 7 project files atomically)
.\bump-version.ps1 -New X.Y.Z
Script Command Reference
Primary actions (choose one):
-Deploy(default): auto-setup prereqs, build, deploy-SetupDeps: install Ghidra JARs into local.m2(Maven deps only; no Python package install)-BuildOnly: build artifacts only-Clean: remove build/cache artifacts and local Ghidra dependency folders in.m2for the active Ghidra version-Preflight: validate tools, paths, required Ghidra jars, and write access without making changes
Useful options:
-GhidraPath "C:\ghidra_12.0.3_PUBLIC"-GhidraVersion "12.0.3"-StrictPreflight-NoAutoPrereqs-SkipBuild-SkipRestart-DryRun-Force-Verbose-Help
Quick examples:
# Standard deploy (recommended)
.\ghidra-mcp-setup.ps1 -Deploy -GhidraPath "C:\ghidra_12.0.3_PUBLIC"
# First-time dependency setup only
.\ghidra-mcp-setup.ps1 -SetupDeps -GhidraPath "C:\ghidra_12.0.3_PUBLIC"
# Build only
.\ghidra-mcp-setup.ps1 -BuildOnly
# Preflight checks only
.\ghidra-mcp-setup.ps1 -Preflight -GhidraPath "C:\ghidra_12.0.3_PUBLIC"
# Strict preflight (fails on warnings)
.\ghidra-mcp-setup.ps1 -Preflight -StrictPreflight -GhidraPath "C:\ghidra_12.0.3_PUBLIC"
# Show command help
.\ghidra-mcp-setup.ps1 -Help
Project Structure
ghidra-mcp/
├── bridge_mcp_ghidra.py # MCP server (Python, 179 tools)
├── src/main/java/ # Ghidra plugin + headless server (Java)
│ └── com/xebyte/
│ ├── MCP4GhidraPlugin.java # GUI plugin (147 endpoints)
│ ├── headless/ # Headless server (172 endpoints)
│ └── core/ # Shared abstractions
├── ghidra_scripts/ # Automation scripts
├── tests/ # Python unit tests + endpoint catalog
│ ├── unit/ # Catalog consistency, schema, tool function tests
│ └── endpoints.json # Endpoint specification (179 entries)
├── docs/ # Documentation
│ ├── prompts/ # AI workflow prompts
│ ├── releases/ # Version release notes
│ └── project-management/ # Project docs
└── .github/workflows/ # CI/CD pipelines
Library Dependencies
Ghidra JARs must be installed into your local Maven repository (~/.m2/repository) before compilation.
This is a one-time setup per machine, and again when your Ghidra version changes.
-Deploy now installs these automatically by default.
The tool enforces version consistency between:
pom.xml(ghidra.version)-GhidraVersion(if provided)-GhidraPathversion segment (e.g.,ghidra_12.0.3_PUBLIC)
If these do not match, deployment fails fast with a clear error.
Troubleshooting: Version Mismatch
If you see a version mismatch error, align all three values:
pom.xml→ghidra.version-GhidraVersion(if used)-GhidraPathversion segment (ghidra_X.Y.Z_PUBLIC)
Then rerun:
.\ghidra-mcp-setup.ps1 -Deploy -GhidraPath "C:\ghidra_12.0.3_PUBLIC" -GhidraVersion "12.0.3"
# Windows
.\ghidra-mcp-setup.ps1 -SetupDeps -GhidraPath "C:\path\to\ghidra_12.0.3_PUBLIC"
# Optional version override
.\ghidra-mcp-setup.ps1 -SetupDeps -GhidraPath "C:\path\to\ghidra_12.0.3_PUBLIC" -GhidraVersion "12.0.3"
Required Libraries (15 JARs, ~38MB):
| Library | Source Path | Purpose |
|---|---|---|
| Base.jar | Features/Base/lib/ |
Core Ghidra functionality |
| Decompiler.jar | Features/Decompiler/lib/ |
Decompilation engine |
| PDB.jar | Features/PDB/lib/ |
Microsoft PDB symbol support |
| FunctionID.jar | Features/FunctionID/lib/ |
Function identification |
| SoftwareModeling.jar | Framework/SoftwareModeling/lib/ |
Program model API |
| Project.jar | Framework/Project/lib/ |
Project management |
| Docking.jar | Framework/Docking/lib/ |
UI docking framework |
| Generic.jar | Framework/Generic/lib/ |
Generic utilities |
| Utility.jar | Framework/Utility/lib/ |
Core utilities |
| Gui.jar | Framework/Gui/lib/ |
GUI components |
| FileSystem.jar | Framework/FileSystem/lib/ |
File system support |
| Help.jar | Framework/Help/lib/ |
Help system APIs used by docking actions |
| Graph.jar | Framework/Graph/lib/ |
Graph/call graph analysis |
| DB.jar | Framework/DB/lib/ |
Database operations |
| Emulation.jar | Framework/Emulation/lib/ |
P-code emulation |
Note: Libraries are NOT included in the repository (see
.gitignore). You must install them from your Ghidra installation before building.
Script roles:
ghidra-mcp-setup.ps1: unified automation script (-SetupDeps,-BuildOnly,-Deploy,-Clean)- default
-Deploybehavior: auto-setup prerequisites, then build and deploy- use
-NoAutoPrereqsfor strict/manual prerequisite management
Development Features
- Automated Deployment: Version-aware deployment script
- Batch Operations: Reduces API calls by 93%
- Atomic Transactions: All-or-nothing semantics
- Comprehensive Logging: Debug and trace capabilities
📚 Documentation
Core Documentation
- Documentation Index - Complete documentation navigation
- Project Structure - Project organization guide
- Naming Conventions - Code naming standards
- Hungarian Notation - Variable naming guide
AI Workflow Prompts
- Function Documentation V5 — Primary workflow: 7-step process with Hungarian notation, type auditing, and verification scoring
- Batch Documentation V5 — Parallel subagent dispatch for multi-function processing
- Orphaned Code Discovery — Automated scanner for undiscovered functions
- Data Type Investigation — Systematic structure discovery
- Cross-Version Matching — Hash-based function matching
- Quick Start Prompt — Simplified beginner workflow
- All Prompts — Complete prompt index
Release History
- Complete Changelog - All version release notes
- Release Notes - Detailed release documentation
🐳 Headless Server (Docker)
GhidraMCP includes a headless server mode for automated analysis without the Ghidra GUI.
Quick Start with Docker
# Build and run
docker-compose up -d ghidra-mcp
# Test connection
curl http://localhost:8089/check_connection
# Connection OK - GhidraMCP Headless Server v3.0.0
Headless API Workflow
# 1. Load a binary
curl -X POST -d "file=/data/program.exe" http://localhost:8089/load_program
# 2. Run auto-analysis (identifies functions, strings, data types)
curl -X POST http://localhost:8089/run_analysis
# 3. List discovered functions
curl "http://localhost:8089/list_functions?limit=20"
# 4. Decompile a function
curl "http://localhost:8089/decompile_function?address=0x401000"
# 5. Get metadata
curl http://localhost:8089/get_metadata
Key Headless Endpoints
| Endpoint | Method | Description |
|---|---|---|
/load_program |
POST | Load binary file for analysis |
/run_analysis |
POST | Run Ghidra auto-analysis |
/list_functions |
GET | List all discovered functions |
/list_exports |
GET | List exported symbols |
/list_imports |
GET | List imported symbols |
/decompile_function |
GET | Decompile function to C code |
/create_function |
POST | Create function at address |
/get_metadata |
GET | Get program metadata |
/create_project |
POST | Create a Ghidra project |
/list_analyzers |
GET | List available analyzers |
/server/status |
GET | Check Ghidra Server connection |
Configuration
Environment variables for Docker:
GHIDRA_MCP_PORT- Server port (default: 8089)GHIDRA_MCP_BIND_ADDRESS- Bind address (default: 0.0.0.0 in Docker)JAVA_OPTS- JVM options (default: -Xmx4g -XX:+UseG1GC)
🤝 Contributing
See CONTRIBUTING.md for detailed contribution guidelines.
Quick Start
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Build and test your changes (
mvn clean package assembly:single -DskipTests) - Update documentation as needed
- Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
📄 License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
🏆 Production Status
| Metric | Value |
|---|---|
| Version | 3.0.0 |
| MCP Tools | 179 fully implemented |
| GUI Endpoints | 147 (MCP4GhidraPlugin) |
| Headless Endpoints | 172 (GhidraMCPHeadlessServer) |
| Compilation | ✅ 100% success |
| Batch Efficiency | 93% API call reduction |
| AI Workflows | 7 proven documentation workflows |
| Ghidra Scripts | Automation scripts included |
| Documentation | Comprehensive with AI prompts |
See CHANGELOG.md for version history and release notes.
🙏 Acknowledgments
- Ghidra Team - For the incredible reverse engineering platform
- Model Context Protocol - For the standardized AI integration framework
- Contributors - For testing, feedback, and improvements
🔗 Related Projects
- re-universe — Ghidra BSim PostgreSQL platform for large-scale binary similarity analysis. Pairs perfectly with GhidraMCP for AI-driven reverse engineering workflows.
- cheat-engine-server-python — MCP server for dynamic memory analysis and debugging.
Ready for production deployment with enterprise-grade reliability and comprehensive binary analysis capabilities.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.