strava-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@strava-mcpshow my recent activities"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Strava MCP Server
An open-source Model Context Protocol (MCP) server that connects AI agents to your Strava data.
Features
Headless Adapter: No UI, just pure MCP tools and resources.
Privacy First: Tokens stored locally (
~/.config/strava-mcp/), never sent to 3rd parties.Resilient: Built-in rate limiting (handles 429s) and SQLite caching.
Educational: Clean, readable Python 3.11+ code with type hints.
Related MCP server: Strava MCP Server
Prerequisites
Python 3.11 or higher
Strava Account (for API credentials)
Quick Start (Dry Run)
You can test the server immediately without Strava credentials using the mock data mode.
# Install dependencies
python3 -m pip install -e .
# Run the smoke test (verifies MCP protocol via stdio)
python3 scripts/smoke_test.pySetup (Real Data)
1. Get Strava Credentials
Go to Strava API Settings.
Create an application.
Callback Domain:
localhost
2. Authorization
Run the local helper script to perform the OAuth handshake. This will open your browser.
export STRAVA_CLIENT_ID=your_client_id
export STRAVA_CLIENT_SECRET=your_client_secret
python3 scripts/strava_auth.pyTokens are saved to ~/.config/strava-mcp/credentials.json.
3. Usage with Claude Code
Configure claude to use this server.
File: ~/.config/claude/config.json (or equivalent MCP manager config)
{
"mcpServers": {
"strava": {
"command": "python3",
"args": ["-m", "strava_mcp.server"],
"env": {
"PYTHONPATH": "/path/to/strava-mcp/src"
}
}
}
}Or run directly if installed in your environment:
{
"mcpServers": {
"strava": {
"command": "uv",
"args": ["run", "python", "-m", "strava_mcp.server"]
}
}
}Tools Available
Tool | Description |
| Returns your profile stats. |
| Fetch recent activities (supports date filtering). |
| Detailed view of a single activity. |
| Aggregated stats (distance, elevation) for a given week. |
Resources
strava://athlete/profile: Direct read of profile.strava://activities/recent: Most recent 10 activities.
Architecture
Tech Stack: Python, FastMCP, Httpx, SQLite, Pydantic.
Caching: GET requests are cached in SQLite with a TTL (default 5 mins for lists).
Rate Limiting: Respects
X-RateLimit-*headers to prevent API bans.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables interaction with Strava's API to access and manage activities, athlete data, routes, segments, clubs, and gear through natural language.2221MIT
- AlicenseBqualityDmaintenanceIntegrates with the Strava API to allow AI assistants to access fitness data including athlete profiles, activity history, and segment statistics. It enables users to query detailed performance metrics and explore geographic segment data through natural language commands.836MIT
- FlicenseAqualityCmaintenanceEnables AI agents to interact with the Strava API to retrieve athlete statistics and activity data. It provides tools for listing recent activities and fetching detailed information for specific workout sessions.7
- Alicense-qualityBmaintenanceMCP server for Strava integration, enabling LLMs to query activities, athlete stats, segments, routes, and perform training analysis.7MIT
Related MCP Connectors
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Real-time Amazon, WIPO & PACER data for AI agents — 19 tools via the MCP protocol.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tayden-b/strava-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server