-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "hexstrike-docker-mcp"
version = "0.1.0"
description = "Dockerized HexStrike AI with a remote streamable-HTTP MCP server"
requires-python = ">=3.11,<3.13"
# Runtime dependencies. Upstream ships these as requirements.txt; we manage them
# with uv. Notes:
# * upstream's `fastmcp>=0.2.0,<1.0.0` (the standalone package) is intentionally
# dropped: the code imports `from mcp.server.fastmcp import FastMCP`, which is
# provided by the `mcp` SDK below. Pinning modern `mcp` guarantees the
# streamable-HTTP transport (streamable_http_app()) is available.
# * uvicorn is added to serve the streamable-HTTP ASGI app.
dependencies = [
"flask>=2.3.0,<4.0.0",
"requests>=2.31.0,<3.0.0",
"psutil>=5.9.0,<6.0.0",
"beautifulsoup4>=4.12.0,<5.0.0",
"selenium>=4.15.0,<5.0.0",
"webdriver-manager>=4.0.0,<5.0.0",
"aiohttp>=3.8.0,<4.0.0",
"mitmproxy>=9.0.0,<11.0.0",
"pwntools>=4.10.0,<5.0.0",
"angr>=9.2.0,<10.0.0",
"bcrypt==4.0.1",
"mcp[cli]>=1.12,<2",
"uvicorn>=0.30.0",
]
# This repo only provides add-on files (the HTTP MCP wrapper + packaging). The
# upstream sources (hexstrike_server.py / hexstrike_mcp.py) are cloned into /app
# at build time, so there is no importable package to build here.
[tool.uv]
package = false