ghidraMCP is a Model Context Protocol server for allowing LLMs to autonomously reverse engineer applications. It exposes numerous tools from core Ghidra functionality to MCP clients.
ghidraMCP_demo.mp4
MCP Server + Ghidra Plugin
- Decompile and analyze binaries in Ghidra
- Automatically rename methods and data
- List methods, classes, imports, and exports
To install GhidraMCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @DaCodeChick/GhidraMCP --client claude
First, download the latest release from this repository. This contains the Ghidra plugin and Python MCP client. Then, you can directly import the plugin into Ghidra.
- Run Ghidra
- Select
File
->Install Extensions
- Click the
+
button - Select the
GhidraMCP-1-2.zip
(or your chosen version) from the downloaded release - Restart Ghidra
Important: The GhidraMCP plugin operates within Ghidra's CodeBrowser tool, not the Project Manager.
- Create or open a Ghidra project in the Project Manager
- Import and open a binary for analysis (the plugin requires an active program)
- Open the CodeBrowser tool (double-click your imported program or use Tools → CodeBrowser)
- In the CodeBrowser, navigate to
File
→Configure
→Developer
- Enable the GhidraMCPPlugin in the Developer tools list
- The HTTP server will start automatically when the plugin is enabled with an active program
- Optional: Configure the server port in CodeBrowser via
Edit
→Tool Options
→GhidraMCP HTTP Server
- Default server address:
http://127.0.0.1:8080/
- The HTTP server only runs when:
- CodeBrowser is open
- A program is loaded
- GhidraMCPPlugin is enabled
Ghidra uses a multi-tool architecture:
- Project Manager: Manages projects and imports binaries
- CodeBrowser: The main analysis tool where most plugins operate
- Other Tools: Various specialized analysis tools
The GhidraMCP plugin specifically integrates with the CodeBrowser tool's analysis capabilities.
Plugin not visible in File → Configure → Developer:
- Ensure you've restarted Ghidra after installing the extension
- Verify you're in the CodeBrowser tool, not the Project Manager
- Check that a program is loaded and active
HTTP server not responding:
- Confirm the plugin is enabled in CodeBrowser's Developer tools
- Verify a binary program is loaded and analyzed
- Check the server port configuration in Tool Options
- Ensure no firewall is blocking localhost connections
"Connection refused" errors:
- The HTTP server only starts when CodeBrowser is open with the plugin enabled
- Close and reopen CodeBrowser if the server seems stuck
- Verify the port matches your MCP client configuration
- Start Ghidra Project Manager
- Import your target binary (File → Import File)
- Open CodeBrowser by double-clicking the imported program
- Enable GhidraMCP plugin (File → Configure → Developer)
- Start your MCP client (Claude Desktop, Cline, etc.)
- Begin reverse engineering with AI assistance
The HTTP server runs continuously while CodeBrowser remains open with the plugin enabled.
Comprehensive API documentation is available via Doxygen. See DOCUMENTATION.md for the complete documentation guide.
- HTML Documentation: Open
docs/html/index.html
in your web browser - Main Plugin Class: GhidraMCPPlugin Documentation
- Package Overview: com.lauriewired Package
To regenerate documentation after code changes:
doxygen Doxyfile
The documentation includes:
- Complete API reference for all HTTP endpoints
- Method signatures and parameter descriptions
- Usage examples and code patterns
- Class hierarchy and relationships
- Thread safety and transaction information
- Integration examples and best practices
Video Installation Guide:
ghidra_MCP_Install.mp4
Theoretically, any MCP client should work with ghidraMCP. Three examples are given below.
To set up Claude Desktop as a Ghidra MCP client, go to Claude
-> Settings
-> Developer
-> Edit Config
-> claude_desktop_config.json
and add the following:
{
"mcpServers": {
"ghidra": {
"command": "python",
"args": [
"/ABSOLUTE_PATH_TO/bridge_mcp_ghidra.py",
"--ghidra-server",
"http://127.0.0.1:8080/"
]
}
}
}
Alternatively, edit this file directly:
/Users/YOUR_USER/Library/Application Support/Claude/claude_desktop_config.json
The server IP and port are configurable and should be set to point to the target Ghidra instance. If not set, both will default to localhost:8080.
To use GhidraMCP with Cline, this requires manually running the MCP server as well. First run the following command:
python bridge_mcp_ghidra.py --transport sse --mcp-host 127.0.0.1 --mcp-port 8081 --ghidra-server http://127.0.0.1:8080/
The only required argument is the transport. If all other arguments are unspecified, they will default to the above. Once the MCP server is running, open up Cline and select MCP Servers
at the top.
Then select Remote Servers
and add the following, ensuring that the url matches the MCP host and port:
- Server Name: GhidraMCP
- Server URL:
http://127.0.0.1:8081/sse
Another MCP client that supports multiple models on the backend is 5ire. To set up GhidraMCP, open 5ire and go to Tools
-> New
and set the following configurations:
- Tool Key: ghidra
- Name: GhidraMCP
- Command:
python /ABSOLUTE_PATH_TO/bridge_mcp_ghidra.py
GitHub Copilot's agent mode can connect to MCP servers over both stdio and sse. To set up GhidraMCP as a "tool" in VSCode's Copilot chat, you need to first make sure you are in "Agent" mode. Then, click on the tools icon in the chat box:
In the drop down menu that appears, select "Add More Tools" and then "Add MCP Server"
Select "Command (stdio)" and enter python3 C:\path\to\bridge_mcp_ghidra.py --ghidra-server http://localhost:8080/
as the command. Make sure to replace the path to the Python script with the actual path on your machine.
Lastly, give your MCP connection a name for VSCode.
Build with Gradle by simply running:
gradle
The generated zip file includes the built Ghidra plugin and its resources. These files are required for Ghidra to recognize the new extension.