[project]
name = "mcp-server-strava"
version = "0.1.0"
description = "Strava API integration with Model Context Protocol SDK"
authors = [{name = "rbctmz"}]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"mcp[cli]>=1.3.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.23.5",
"ruff>=0.2.1"
]
[project.urls]
Homepage = "https://github.com/rbctmz/mcp-server-strava"
Repository = "https://github.com/rbctmz/mcp-server-strava.git"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
extend-exclude = ["tests/*"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long
"B904", # raise from err
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=src --cov-report=term-missing"
[tool.mcp]
name = "Strava Integration"
version = "1.0.0"
python_path = ".venv/bin/python"
[tool.mcp.server]
module = "src.server"