pyproject.toml•1.06 kB
[project]
name = "cortex-cloud-docs-mcp-server"
version = "1.1.0"
description = "MCP server providing search access to Cortex Cloud documentation"
readme = "README.md"
authors = [
{ name = "Matt Clarke", email = "futurebird1@protonmail.com" }
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.12.2",
"aiohttp>=3.11.10",
"beautifulsoup4>=4.13.3",
"fastmcp>=0.1.0",
"uvicorn>=0.34.0",
"starlette>=0.41.0"
]
[project.scripts]
cortex-cloud-docs-mcp-server = "server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cortex_cloud_docs_mcp_server"]
[project.urls]
"Homepage" = "https://github.com/clarkemn/cortex-cloud-docs-mcp-server"
"Bug Reports" = "https://github.com/clarkemn/cortex-cloud-docs-mcp-server/issues"
"Source" = "https://github.com/clarkemn/cortex-cloud-docs-mcp-server"