pyproject.toml•1.41 kB
[project]
name = "test-http-mcp"
authors = [{ name = "Yeison Liscano", email = "yliscanoc@gmail.com" }]
maintainers = [{ name = "Yeison Liscano", email = "yliscanoc@gmail.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["mcp", "llm", "automation", "http"]
description = "This is a HTTP implementation of the MCP protocol"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.13,<3.14"
version = "0.0.1"
dependencies = [
"pydantic==2.11.7",
"uvicorn==0.35.0",
"starlette==0.47.2",
"http-mcp==0.3.0rc1",
"fastapi==0.116.1",
"logfire[fastapi,sqlite3]==4.3.3",
"pydantic-ai==0.7.4",
"nvdlib==0.8.3"
]
[dependency-groups]
dev = [
"httpx==0.28.1",
"mdformat==0.7.22",
"mypy==1.17.1",
"pytest==8.4.1",
"ruff==0.9.10",
"pytest-cov==6.2.1",
"pytest-asyncio==1.1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[project.scripts]
run-app = "app.main:run_http"
run-stdio = "app.main:run_stdio"
run-app-local = "app.app:main"
[project.urls]
Homepage = "https://github.com/yeison-liscano/test-http-mcp"
Issues = "https://github.com/yeison-liscano/test-http-mcp/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
microsoft-python-type-stubs = { git = "https://github.com/microsoft/python-type-stubs.git" }