[project]
name = "clickup-mcp-server"
version = "0.1.0"
description = "A Model Context Protocol server providing tools to interact with ClickUp API"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Josh Newton" }]
keywords = ["clickup", "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 = [
"click>=8.1.7",
"mcp>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.28.0",
"markdown>=3.5.0",
"beautifulsoup4>=4.12.0",
]
[project.scripts]
clickup-mcp-server = "clickup_mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["pyright>=1.1.389", "ruff>=0.7.3", "pytest>=8.0.0", "pytest-mock>=3.10.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"