[project]
name = "debug-mcp"
version = "0.1.0"
description = "MCP server for debugging AWS distributed systems"
authors = [
{name = "Evgenii Basmov", email = "eb@example.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"fastmcp>=0.2.0",
"mcp>=1.0.0",
"pydantic>=2.0.0",
"boto3>=1.34.0",
"langsmith>=0.1.0",
"python-dotenv>=1.0.0",
"sentence-transformers>=2.2.0",
"numpy>=1.24.0",
"jira>=3.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
]
[project.scripts]
debug-mcp = "debug_mcp.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
]
fixable = ["ALL"]
[tool.ruff.lint.isort]
known-first-party = ["debug_mcp"]
[tool.mypy]
python_version = "3.11"
strict = true