pyproject.toml•1.06 kB
[project]
name = "context-mcp-server"
version = "1.4.1"
description = "A Model Context Protocol server providing intelligent context management and web content fetching capabilities for AI assistants"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "langgpt" }]
maintainers = [{ name = "langgpt" }]
keywords = ["http", "mcp", "llm", "automation"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"httpx<0.28",
"markdownify>=0.13.1",
"mcp>=1.1.3",
"pydantic>=2.0.0",
"readabilipy>=0.2.0",
"requests>=2.32.3",
]
[project.scripts]
context-mcp-server = "context_mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/context_mcp_server"]
[tool.uv]
dev-dependencies = ["pyright>=1.1.389", "ruff>=0.7.3"]