strava-mcp
Provides tools for querying and managing your own Strava data, including recent activities, athlete profile, activity details and streams, stats, gear, zones, laps, activity search, and export.
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-mcpWhat's my total running distance this month?"
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
Small, read-only local MCP server for querying your own Strava data from Codex. It uses Strava's API on behalf of one authenticated athlete; it is not a hosted or multi-user service.
Requirements
Node.js 22+
A Strava API application and an account authorized for its requested read scopes
Related MCP server: Strava Planner MCP
Quick Start
Create a Strava API application in the Strava API settings.
Complete the OAuth flow described below and copy the resulting refresh token.
Copy the environment template:
cp .env.example .envFill in:
STRAVA_CLIENT_ID=...
STRAVA_CLIENT_SECRET=...
STRAVA_REFRESH_TOKEN=...
STRAVA_GRANTED_SCOPES=read,activity:read,activity:read_all,profile:read_allInstall and verify:
npm install
npm run check
npm testBuild and run locally:
npm run build
npm startUse npm run dev only while developing.
OAuth Setup
This server intentionally has no browser-auth CLI: Strava's authorization flow is one-time setup, and the server refreshes and persists tokens afterward.
Set your app's authorization callback domain in Strava's API settings. For a local manual flow, use a loopback callback such as
localhost.Open an authorization URL using your client id and the scopes below. Replace
<client-id>and<redirect-uri>:
https://www.strava.com/oauth/authorize?client_id=<client-id>&response_type=code&redirect_uri=<redirect-uri>&approval_prompt=force&scope=read,activity:read_all,profile:read_allAfter approval, exchange the returned
codeathttps://www.strava.com/oauth/tokenwith your client id, client secret, authorization code, andgrant_type=authorization_code.Put the returned
refresh_tokeninSTRAVA_REFRESH_TOKEN. Copy the callback's grantedscopevalue intoSTRAVA_GRANTED_SCOPES.
The server stores rotated access and refresh tokens in ~/.config/strava-mcp/auth.json by default. Set STRAVA_DATA_DIR to move all local Strava state elsewhere, or set STRAVA_TOKEN_FILE only when the credential cache must live at a specific path.
Tools
strava_recent_activitiesstrava_athlete_profilestrava_activity_detailstrava_activity_streamsstrava_athlete_statsstrava_gear_detailstrava_athlete_zonesstrava_activity_zonesstrava_activity_lapsstrava_rate_limit_statusstrava_sync_activitiesstrava_cache_statusstrava_activity_summarystrava_gear_usagestrava_activity_searchstrava_export_activities
Common Codex workflows
Sync activity history into the ignored local cache:
{
"after": 1648771200,
"maxPages": 20
}Query from cache only after a sync:
{
"after": 1648771200,
"sportTypes": ["MountainBikeRide", "Ride"],
"groupBy": "month",
"source": "cache"
}Use source on bounded analysis and export tools:
cache_then_apiuses local cache when covered, then syncs missing history if needed. This is the default.cachenever calls Strava and fails clearly if the cache does not cover the range.apicalls Strava directly and does not require cache coverage.
Export an audit snapshot from the same resolved activity set:
{
"after": 1648771200,
"sportTypes": ["MountainBikeRide", "Ride"],
"source": "cache"
}Inspect local cache/rate-limit metadata with strava_cache_status, strava_rate_limit_status, or the MCP resource strava://cache/status.
For long activities, prefer compact streams:
{
"id": 123456789,
"keys": ["time", "distance", "heartrate", "latlng"],
"maxPoints": 500
}Codex MCP config
Use absolute paths for your clone:
[mcp_servers.strava]
command = "node"
args = ["/absolute/path/to/strava-mcp/dist/server.js"]Keep this read-only unless you intentionally add write scopes and write tools.
STRAVA_TOKEN_FILE is optional. Strava can rotate refresh tokens, and the server writes the newest token to STRAVA_DATA_DIR/auth.json by default.
STRAVA_GRANTED_SCOPES is optional but recommended. Copy the comma-separated scope value from the OAuth callback URL so scope errors fail locally with a clear message.
Private local data lives outside the repository:
auth.json: rotated OAuth token cache.cache/activities.json: local activity-history cache.exports/*.jsonandexports/*.csv: raw and compact audit exports.
By default these are under ~/.config/strava-mcp. Use them for local audits, but do not add them to Git.
Development
npm run format:check
npm run lint
npm run typecheck
npm testSee CONTRIBUTING.md for project scope and contribution guidance.
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
- AlicenseBqualityAmaintenancePrivacy-first MCP server for Strava activities, streams, routes and training data.293832MIT
- FlicenseAqualityCmaintenanceExposes Strava training data to Claude for coaching, planning, and analysis via a read-only MCP server with OAuth and Docker support.13
- Alicense-qualityDmaintenanceMCP server that exposes Strava API v3 data (activities, segments, routes, clubs, gear, streams) as tools for any MCP client. Read-only by default, with an optional --write flag to enable mutating operations.211MIT
- AlicenseBqualityCmaintenanceA local, read-only Model Context Protocol server for an athlete's Strava profile and activities, enabling retrieval of profile data, activity lists (with paging and date filters), and detailed activity information via standard input/output for MCP hosts.321MIT
Related MCP Connectors
MCP server for Withings health data — sleep, activity, heart, and body metrics.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
MCP server for interacting with the Supabase platform
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/EthanDM/strava-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server