[project]
name = "context-engineering-mcp"
version = "0.1.1"
description = "MCP server for Context Engineering templates and protocols"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.scripts]
context-engineering-mcp = "context_engineering_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/context_engineering_mcp"]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.gitignore",
"/AGENTS.md",
"/TODO.md",
"/test_server.py",
"/.claude",
"/.context",
"/.serena",
"/.gemini",
"/dist",
]