GhidrAssistMCP Integration
March 25, 2026 ยท View on GitHub
Purpose
GhidrAssistMCP provides a live MCP bridge for interactive analysis inside Ghidra. In this repository it is an optional reverse-engineering aid.
Canonical evidence remains:
- retail Quake Live binaries under
assets/quakelive/ - committed Binary Ninja HLIL dumps under
references/hlil/ - committed Ghidra exports under
references/reverse-engineering/ghidra/
Use GhidrAssistMCP to accelerate investigation, then persist conclusions back into committed corpus-backed notes.
Setup Paths
Bootstrap script:
scripts/ghidra/setup_ghidrassist_mcp.ps1
Default upstream cache location used by the script:
references/reverse-engineering/upstream/ghidrassistmcp/
Release package download
scripts\ghidra\setup_ghidrassist_mcp.ps1 -Mode release
Options:
-Version <tag>to pin a specific release tag instead oflatest-Forceto re-download an existing zip-DryRunto preview paths and assets without writing files
After download, install from Ghidra UI:
File -> Install Extensions...- Select the downloaded
*GhidrAssistMCP.zip - Restart Ghidra
Source install path
scripts\ghidra\setup_ghidrassist_mcp.ps1 -Mode source -GhidraHome "C:\Users\djdac\Tools\ghidra_12.0.4_PUBLIC"
This clones the tagged source under
references/reverse-engineering/upstream/ghidrassistmcp/source/<tag>/ and runs:
gradlew(.bat) -PGHIDRA_INSTALL_DIR=<GhidraHome> installExtension
MCP Server Configuration
Inside Ghidra, configure GhidrAssist and enable MCP server mode.
Default endpoint modes:
- SSE:
http://127.0.0.1:8080/sse - Streamable HTTP:
http://127.0.0.1:8080/mcp
Auth modes supported by GhidrAssistMCP:
noneapi_keyjwt
Client-side MCP configuration must match the endpoint mode and auth mode selected in GhidrAssist.
Workflow Policy
- Use GhidrAssistMCP for interactive exploration and hypothesis generation.
- Re-validate conclusions against committed corpus files in
references/reverse-engineering/ghidra/*. - Cross-check parity-sensitive claims against the matching HLIL dumps in
references/hlil/quakelive/*. - Record durable findings in:
docs/reverse-engineering/ghidra-module-mapping.mddocs/reference-mapping.md- subsystem notes under
docs/reverse-engineering/ordocs/gameplay/parity/
- Refresh committed corpus exports when needed:
scripts\ghidra\run_quakelive_reference.ps1
Do not treat live MCP output as canonical without committed corpus-backed evidence.