[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "overwatch-mcp"
version = "1.0.0"
description = "MCP server providing Claude Desktop access to Graylog, Prometheus, and InfluxDB observability systems"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Malinda Rathnayake", email = "malinda@rathnayake.net"}
]
dependencies = [
"mcp>=1.0.0,<2.0.0",
"httpx>=0.27.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"pyyaml>=6.0",
"cachetools>=5.3.0",
"starlette>=0.37.0",
"uvicorn>=0.29.0",
"sse-starlette>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"pytest-httpx>=0.30.0",
"ruff>=0.1.0",
"mypy>=1.8.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true