From c4744afa582caefaf265ed37f821ab28fda6b489 Mon Sep 17 00:00:00 2001 From: Teal Bauer Date: Sun, 30 Mar 2025 00:51:27 +0100 Subject: [PATCH] Switch examples to `uv run` --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d448dc9..45b0a84 100644 --- a/README.md +++ b/README.md @@ -134,8 +134,9 @@ client.use_tool("ghydra", "register_instance", {"port": 8193}) { "mcpServers": { "ghydra": { - "command": "python", + "command": "uv", "args": [ + "run", "/ABSOLUTE_PATH_TO/bridge_mcp_hydra.py" ], "env": { @@ -146,10 +147,12 @@ client.use_tool("ghydra", "register_instance", {"port": 8193}) } ``` +> **Note:** You can also use `python` instead of `uv run`, but then you'll need to manually install the requirements first with `pip install mcp requests`. + ### 5ire Configuration 1. Tool Key: ghydra 2. Name: GhydraMCP -3. Command: `python /ABSOLUTE_PATH_TO/bridge_mcp_hydra.py` +3. Command: `uv run /ABSOLUTE_PATH_TO/bridge_mcp_hydra.py` ## Example Session