Initial commit: Modularized Strava MCP Server with UV and Hatchling

This commit is contained in:
2026-05-09 01:06:04 +02:00
commit ed43e1928e
21 changed files with 2688 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "strava-mcp-server"
version = "0.1.0"
description = "A Model Context Protocol (MCP) server that exposes the Strava API v3 as tools, resources, and prompts for AI agents."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["strava", "mcp", "model-context-protocol", "ai", "llm", "fitness"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dependencies = [
"fastapi",
"uvicorn",
"mcp[cli]",
"httpx",
"python-dotenv",
]
[project.urls]
Homepage = "https://github.com/your-username/strava-mcp-server"
Repository = "https://github.com/your-username/strava-mcp-server"
"Bug Tracker" = "https://github.com/your-username/strava-mcp-server/issues"
[project.scripts]
strava-mcp = "strava_mcp_server.main:main"
strava-mcp-get-token = "strava_mcp_server.get_token:main"
[dependency-groups]
dev = [
"ruff>=0.15.12",
]