#165·GhidraMCP

[feature] UV/UVX deployement to help maintain and install the client as native mcp

Author: anotherAwesomeKittenCreated Jun 17, 2026Updated Jun 21, 2026

UV/UVX are realy awesome hehe

usefull command

bash
uv venv
uv init
uv pip install .
uv sync
uv lock
uv tool install .
uvx ghidramcp

or even as native client : ghidramcp

toml to install the project as tool

toml
[project]
name = "ghidramcp"
version = "0.1.0"
description = "Ghidra MCP Bridge"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
    "fastmcp>=3.4.2",
    "requests>=2.34.2",
]

[project.scripts]
ghidramcp = "bridge_mcp_ghidra:main"

https://docs.astral.sh/uv/

(you can even make realise with the build option and git so it would result in uvx github.....)