Some checks are pending
Build Ghidra Plugin / build (push) Waiting to run
Allows AI clients to submit feedback about tool quality, report issues, and track statistics. Persists to ~/.ghydramcp/feedback.db (SQLite). - Add fastmcp-feedback dependency - Add feedback_enabled / feedback_db_path config fields - Wire add_feedback_tools() into create_server() with graceful fallback - Show feedback path in startup banner Disable with GHYDRA_FEEDBACK=false
44 lines
970 B
TOML
44 lines
970 B
TOML
[project]
|
|
name = "ghydramcp"
|
|
version = "2025.12.3"
|
|
description = "AI-assisted reverse engineering bridge: a multi-instance Ghidra plugin exposed via a HATEOAS REST API plus an MCP Python bridge for decompilation, analysis & binary manipulation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"}
|
|
]
|
|
dependencies = [
|
|
"mcp>=1.22.0",
|
|
"requests>=2.32.3",
|
|
"fastmcp>=2.0.0",
|
|
"fastmcp-feedback>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
ghydramcp = "ghydramcp:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ghydramcp"]
|
|
|
|
[tool.hatch.build]
|
|
sources = ["src"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/src",
|
|
"/README.md",
|
|
"/pyproject.toml",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "W"]
|
|
ignore = ["E501"] # Line too long - handled by formatter
|