PcmHackMCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PcmHackMCPRun a Jython script to count all functions starting with FUN_ and rename them to meaningful names."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PcmHackMCP
PcmHackMCP is a fork of LaurieWired/GhidraMCP (Apache-2.0): a Model Context Protocol (MCP) server plus Ghidra plugin that lets MCP clients (Claude, etc.) drive Ghidra for reverse engineering.
It keeps all of the upstream tools and adds one thing: a server-side run_python tool that executes an arbitrary Jython script inside Ghidra in a single call. Bulk work - mass renames, xref sweeps, batch comments, applying data types over many addresses - runs as one loop inside Ghidra instead of thousands of individual MCP/HTTP round-trips. Only the printed result crosses the wire.
To run alongside the original GhidraMCP without clashing, every identifier is renamed and the default port is changed:
Upstream GhidraMCP | PcmHackMCP | |
MCP server name |
|
|
Ghidra module / extension |
|
|
Java class |
|
|
Default HTTP port | 8080 | 8765 |
MCP bridge script |
|
|
Features
Everything in upstream GhidraMCP (decompile, list/rename functions and data, imports/exports, xrefs, strings, set prototypes, and more).
run_python(code, timeout=600)- run an arbitrary Jython script server-side against the current program. Full GhidraScript environment is available (currentProgram, the flat API,monitor); a program transaction is opened and committed automatically; bothprint(...)andprintln(...)output is captured and returned.
Related MCP server: GhidraMCP
Install
Prerequisites
Ghidra 11.3.2
Python 3.10+ and the MCP SDK:
pip install "mcp>=1.2.0,<2" "requests>=2,<3"
Ghidra plugin
Run Ghidra
File->Install ExtensionsClick
+and selectPcmHackMCP-11.3.2.zipRestart Ghidra
Enable PcmHackMCP in
File->Configure->DeveloperOptional: change the port in
Edit->Tool Options->PcmHackMCP HTTP Server(default 8765)
MCP client (Claude Desktop example)
Claude -> Settings -> Developer -> Edit Config, then:
{
"mcpServers": {
"pcmhack": {
"command": "py",
"args": [
"-3",
"C:\\ABSOLUTE_PATH_TO\\bridge_mcp_pcmhack.py",
"--ghidra-server",
"http://127.0.0.1:8765/"
]
}
}
}Host/port default to 127.0.0.1:8765 if not set.
Claude Code
claude mcp add pcmhack -- py -3 "C:\ABSOLUTE_PATH_TO\bridge_mcp_pcmhack.py"run_python example
curl -s -X POST http://127.0.0.1:8765/run_python --data-binary @- <<'PY'
count = 0
for f in currentProgram.getFunctionManager().getFunctions(True):
if f.getName().startswith("FUN_"):
count += 1
print("auto-named functions:", count)
PYThe script runs inside Ghidra and returns its printed output.
Security: the embedded HTTP server binds to all interfaces and
run_pythonexecutes arbitrary code in your Ghidra session. Run it only on a trusted network.
Claude Code skill
A Claude Code skill ships with this repo at .claude/skills/pcmhack-mcp/SKILL.md. It captures the discipline for writing good run_python payloads: the whole-script model, printing results as JSON, the automatic (commit-on-error) transaction, and the Jython 2.7 traps that bite. It loads automatically when you work with run_python.
Build from source
No Maven required (it is a single source file). With JDK 17-21:
Copy these jars from your Ghidra install into
lib/:Base.jar,Decompiler.jar,Docking.jar,Generic.jar,Project.jar,SoftwareModeling.jar,Utility.jar,Gui.jar
Compile and package:
javac --release 17 -cp "lib/*" -d build/classes src/main/java/com/pcmhack/mcp/PcmHackMCPPlugin.java jar --create --file target/PcmHackMCP.jar --manifest src/main/resources/META-INF/MANIFEST.MF -C build/classes .Zip an extension folder
PcmHackMCP/containingextension.properties,Module.manifest, andlib/PcmHackMCP.jar.
Or, if you have Maven installed: mvn clean package assembly:single.
Credits
Fork of GhidraMCP by LaurieWired. Licensed under Apache-2.0; see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hjtrbo/PcmHackMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server