Some checks are pending
Build Ghidra Plugin / build (push) Waiting to run
- Add ghydramcp Python package with FastMCP server implementation - Add docker-compose.yml for easy container management - Add Makefile with build/run targets - Add QUICKSTART.md for getting started - Add uv.lock for reproducible dependencies
16 lines
437 B
Python
16 lines
437 B
Python
"""GhydraMCP - AI-assisted reverse engineering bridge for Ghidra.
|
|
|
|
A multi-instance Ghidra plugin exposed via HATEOAS REST API plus an MCP
|
|
Python bridge for decompilation, analysis & binary manipulation.
|
|
"""
|
|
|
|
try:
|
|
from importlib.metadata import version
|
|
__version__ = version("ghydramcp")
|
|
except Exception:
|
|
__version__ = "2025.12.1"
|
|
|
|
from .server import create_server, main
|
|
|
|
__all__ = ["create_server", "main", "__version__"]
|