Strava MCP
Provides tools for interacting with the Strava API, enabling management of activities (including manual creation and updates), exploration and management of segments, fetching photos and zone breakdowns, viewing routes, exporting GPX/TCX files, and performing derived analyses such as interval detection, training load, and fitness trends. Also offers interactive visualizations for activity charts, cadence trends, route maps, and more.
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 fitness trend and training load for the last 4 weeks"
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
A Model Context Protocol (MCP) server that supplements the official Strava MCP connector. It adds write access, segments, routes, photos, derived analysis, and interactive visualizations that the official connector does not provide.
Features
Write and update activities (title, description, sport type, gear, flags)
Create manual activities for sessions with no device recording (strength, yoga, treadmill)
Explore, view, star, and manage segments
Fetch per-activity photos, zone breakdowns, and running summaries
List and view details of saved routes
Export routes (GPX/TCX) and activity tracks (GPX built from streams)
Derived analysis Strava does not expose: interval detection, climb/descent breakdown, aerobic decoupling, training load, fitness/fatigue/form (CTL/ATL/TSB), and a solved taper to a target race-day form
AI-friendly JSON responses via MCP
Nine interactive visualizations rendered in MCP-compatible hosts — activity chart, cadence trends, route map, activity segments, training load, compare activities, activity zones, segment progress, and fitness trend
Guided prompts for weekly reviews, annotating a run, and segment hunting (docs/tools.md)
Automatic token refresh
Streamable HTTP transport for remote deployment
Browse the UI components in the live Storybook.
The full tool catalog, prompts, permission behaviour, and example requests live in docs/tools.md.
Related MCP server: strava-mcp
Quick Start (Docker)
1. Create a Strava API Application
Go to strava.com/settings/api
Create a new application:
Enter your application details (name, website, description)
Set "Authorization Callback Domain" to your public URL hostname (e.g.,
strava-mcp.example.com)Note your Client ID and Client Secret
2. Configure Environment
cp .env.example .envEdit .env with your values:
STRAVA_CLIENT_ID=your_client_id
STRAVA_CLIENT_SECRET=your_client_secret
PUBLIC_URL=https://your-public-url.example.comAll variables are listed in docs/operations.md. Prefer the prebuilt image? Pull ghcr.io/ljcl/strava-mcp:latest (also on the MCP registry as io.github.ljcl/strava-mcp) and point your compose image: at it instead of building; you still supply the Strava credentials yourself. Published images carry SBOM/provenance attestations you can verify — see operations.md.
Note on the ./data bind mount: tokens persist there, and the distroless image runs as non-root UID 65534, so the directory must be writable by that UID or token persistence fails on first run:
mkdir -p data
sudo chown -R 65534:65534 dataAlternatively use a named volume in docker-compose.yml (e.g. strava-data:/app/data), which Docker initializes with correct ownership. More detail in operations.md.
3. Start the Server
docker compose up -dGET /health reports liveness without spending a Strava API request; with MCP_AUTH_TOKEN it also reports auth and rate-limit state. Response shapes and monitoring guidance: operations.md.
4. Authorize with Strava
Visit https://your-public-url/auth/start in your browser. After authorizing, tokens are saved automatically and refreshed from then on. Check status anytime at /auth/status.
If you set MCP_AUTH_TOKEN, append it to both URLs as ?token=<MCP_AUTH_TOKEN>.
5. Connect to Claude Desktop
Add to your Claude configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"strava": {
"type": "url",
"url": "https://your-public-url/mcp",
"headers": { "Authorization": "Bearer your-mcp-auth-token" }
}
}
}The headers entry is only needed when MCP_AUTH_TOKEN is set (recommended for tunnel-exposed servers — see Securing the endpoint).
Restart Claude Desktop to load the new configuration.
Connecting to AI Tools
Most AI tools (Claude Desktop, Claude Code, etc.) need an HTTPS URL to reach your MCP server. Since the server runs on your local network, you'll need a tunnel to expose it.
Tailscale Funnel (Recommended)
Tailscale Funnel exposes a local port to the internet over HTTPS with no configuration:
tailscale funnel --bg 3000
# → https://your-machine.tail1234.ts.netSet PUBLIC_URL in your .env to the resulting URL.
Cloudflare Tunnel
cloudflared tunnel --url http://localhost:3000Securing the endpoint
A tunnel makes /mcp reachable by anyone who discovers the URL — including the update-activity write tool. Set MCP_AUTH_TOKEN to a long random secret (openssl rand -hex 32) and every /mcp request requires Authorization: Bearer <token>; each client snippet below shows where the header goes. The secret also gates /auth/start and /auth/status. Full details (including how OAuth callbacks stay safe): operations.md.
Set it in .env alongside your Strava credentials — docker-compose.yml forwards it automatically.
AI Tool (Claude Desktop, Claude Code, etc.)
│ HTTPS
HTTPS Tunnel (Tailscale / Cloudflare)
│ HTTP (localhost:3000)
Strava MCP Server (Docker / Bun)
│ HTTPS
Strava APIClient configuration
The server works with any MCP client that supports the Streamable HTTP transport. In every snippet below, replace https://your-public-url with your tunnel URL (or http://localhost:3000 for local development), and include the Authorization header only if you set MCP_AUTH_TOKEN.
Claude Code
claude mcp add --transport http strava https://your-public-url/mcp \
--header "Authorization: Bearer your-mcp-auth-token"Cursor
Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):
{
"mcpServers": {
"strava": {
"url": "https://your-public-url/mcp",
"headers": { "Authorization": "Bearer your-mcp-auth-token" }
}
}
}VS Code
Add to .vscode/mcp.json in your workspace (or run MCP: Add Server from the command palette):
{
"servers": {
"strava": {
"type": "http",
"url": "https://your-public-url/mcp",
"headers": { "Authorization": "Bearer your-mcp-auth-token" }
}
}
}Other clients (generic Streamable HTTP)
Any client that speaks Streamable HTTP can connect to the /mcp endpoint directly. One URL serves both protocol eras: 2026-07-28 clients send stateless requests carrying the io.modelcontextprotocol/* envelope keys (server/discover advertises capabilities); 2025-era clients use the ordinary initialize handshake. POST JSON-RPC messages with an Accept: application/json, text/event-stream header. Protocol details: docs/architecture.md.
Using alongside the official Strava MCP
Strava's official MCP connector handles activity discovery and basic reads. This server supplements it with everything the official connector does not offer: writing to activities, segments, routes and GPX/TCX export, photos, derived analysis, and interactive visualizations.
Install both
Official:
claude mcp add --transport http strava-mcp https://mcp.strava.com/mcp(or via claude.ai Connectors / Claude Desktop).This server: see the install steps above.
Who does what
Capability | Official | This server |
List / read activities, streams, profile, zones, gear, clubs, training plan | yes | no (use official) |
Update activities, star segments | no | yes |
Segment detail / search / efforts | no | yes |
Routes plus GPX/TCX export | no | yes |
Activity GPX export (synthesized from streams) | no | yes |
Activity photos | no | yes |
Athlete stats, per-activity zones, best efforts, running summary, training load, compare | no | yes |
Interval, hill, and aerobic analysis; fitness/fatigue/form (CTL/ATL/TSB) | no | yes |
Interactive apps: activity chart, cadence trends, route map, activity segments, training load, compare activities, activity zones, segment progress, fitness trend | no | yes |
Caveats
The official connector requires a Strava subscription and currently runs only in Anthropic clients.
With the duplicate reads removed, this server now effectively assumes the official connector is installed for activity discovery. The aggregate analysis tools (
get-best-efforts,get-training-load) fetch their own activity lists, but per-activity tools (get-running-summary,compare-activities,get-activity-zones, etc.) need an activity id from the officiallist_activities.The two use separate rate-limit quotas, so running both spreads API load.
Recommended workflow
Use the official connector to discover and read activities, then use this server to write, explore segments, manage and export routes, and visualize. The model can pass activity ids from official list_activities directly into this server's tools.
Example requests
Ask your AI assistant questions like these (use the official Strava MCP to discover activity IDs, then pass them to these tools):
"Update the title of activity 12345678 to 'Morning Threshold'"
"Show me the HR zone breakdown for activity 12345678"
"Break down the intervals in activity 12345678 — did I fade across the reps?"
"Did I positive-split Sunday's long run, or was that just the hills?"
"My race is on 13 September — what should the next three weeks look like so I arrive at TSB +10?"
"Am I getting faster on segment 8109834? Show my effort history"
"Map my race route with fuel stops at 10k, 21k, and 32k, and flag the climb at 28k"
More in docs/tools.md.
Local Development
Prerequisites: Bun and a Strava account.
bun install
# Guided OAuth flow using localhost as redirect URI
cd apps/server && bun run setup-auth && cd ../..
# Start dev server (server + MCP App watchers)
bun run devThen point any client at http://localhost:3000/mcp. Repo layout, task runner, tests, coverage gates, and Storybook workflow: docs/development.md. Agent conventions live in AGENTS.md.
Documentation
Doc | Contents |
Full tool catalog, prompts, permission behaviour, example requests | |
Environment variables, auth/token handling, health endpoint, rate limits, endpoint security | |
Server architecture: transport, HTTP layer, cache, error taxonomy, analysis math | |
MCP App packages: shared shell, mobile, theming, per-app details | |
Monorepo mechanics: Turborepo, coverage gates, Storybook gates, Docker build | |
Release automation: Conventional Commit PR titles, release-please, publishing | |
Issue tracking and project board |
PRs are squash-merged and the PR title becomes the commit on main, so write it as a Conventional Commit (feat: minor, fix: patch, feat!: major; chore:/docs:/refactor:/ci: release nothing). A CI check rejects non-conforming titles; see docs/releasing.md.
Troubleshooting
AI tool can't reach the server — MCP requires an HTTPS URL. Use a tunnel (Tailscale Funnel or Cloudflare Tunnel) to expose your local server. See Connecting to AI Tools.
OAuth callback fails — Ensure PUBLIC_URL in your .env matches the tunnel URL exactly, and that the same hostname is set as the "Authorization Callback Domain" in your Strava API settings.
Token errors or expired tokens — Check /health first: authenticated and token_expires_at tell you whether the server holds a usable token, which separates an auth problem from a reachability one. Then visit /auth/start to re-authorize. Tokens refresh automatically, but a full re-auth is needed if the refresh token was revoked or a new release added a scope. See operations.md.
Is the server up and reachable? — curl https://your-public-url/health. It answers without touching the Strava API, so it works even when your rate limit is exhausted.
Tokens don't survive a container restart (Docker) — The container runs as non-root UID 65534, so the ./data bind mount must be writable by that UID (sudo chown -R 65534:65534 data), or use a named volume instead. See Quick Start step 2 and operations.md.
Client re-prompts for read tools after I granted them — A release likely renamed a tool or changed its input schema; grants are stored per tool identity, so that drops the grant. Releases say so in the changelog. Otherwise persistence lives in the client — check both connector-level and per-tool settings. See docs/tools.md.
License
MIT
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
- AlicenseAqualityDmaintenanceAn MCP server that enables interaction with the Strava API v3 to manage fitness activities, athlete profiles, segments, and routes. It supports retrieving detailed performance metrics, exploring geographic data, and managing club information through natural language.61ISC
- AlicenseNot gradedqualityCmaintenanceMCP server for Strava integration, enabling LLMs to query activities, athlete stats, segments, routes, and perform training analysis.7MIT
- FlicenseNot gradedqualityDmaintenanceMCP server to fetch Strava activities using OAuth authentication with automatic token refresh. Allows retrieving recent activities, activities by date range, activity details, and athlete stats.
- AlicenseBqualityAmaintenancePrivacy-first MCP server for Strava activities, streams, routes and training data.293382MIT
Related MCP Connectors
MCP server for Withings health data — sleep, activity, heart, and body metrics.
MCP server for the Inistate platform: module discovery, entry management, and activity submission.
MCP server for Brazilian Federal Senate open data (legislative, administrative, e-Cidadania).
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/ljcl/strava-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server