-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 823 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 823 Bytes
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
[project]
name = "mcp2cli"
version = "3.7.0"
description = "Turn any MCP server or OpenAPI spec into a CLI"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Stephan Fitzpatrick", email = "stephan@knowsuchagency.com" }
]
requires-python = ">=3.10"
dependencies = [
"httpx",
# Works on both SDK majors; 1.26 is the floor we verify in CI, and the one
# where `streamable_http_client` + `create_mcp_http_client` are both present.
"mcp>=1.26,<3",
"pyyaml",
]
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio", "tiktoken"]
[project.urls]
Homepage = "https://github.com/knowsuchagency/mcp2cli"
Repository = "https://github.com/knowsuchagency/mcp2cli"
[project.scripts]
mcp2cli = "mcp2cli:main"
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"