[project]
name = "darwin-standards-mcp"
version = "0.1.0"
description = "MCP server providing standards documentation and validation tools for the Darwin platform"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{name = "Darwin Platform Team"}
]
keywords = ["mcp", "standards", "darwin", "validation", "ai-agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=0.1.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"aiofiles>=24.0",
"structlog>=24.0",
"opentelemetry-api>=1.20",
"opentelemetry-sdk>=1.20",
"opentelemetry-exporter-otlp>=1.20",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.0",
"ruff>=0.4",
"mypy>=1.10",
]
[project.scripts]
standards-mcp-server = "standards_mcp_server.server:main"
[project.urls]
Homepage = "https://github.com/fgarcia/darwin-standards-mcp"
Repository = "https://github.com/fgarcia/darwin-standards-mcp"
Issues = "https://github.com/fgarcia/darwin-standards-mcp/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/standards_mcp_server"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --cov=src/standards_mcp_server --cov-report=term-missing"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_ignores = true