[project]
name = "sentry-mcp"
version = "0.1.0"
description = "MCP server for Sentry API integration with multi-instance support"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.3.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = []
[tool.pytest.ini_options]
asyncio_mode = "auto"