Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Strava MCP Server

A Strava MCP server with local caching for improved performance and rate limit management.

Prerequisites

  1. Setup Strava developer credentials
  2. Install Go

Installation

git clone https://github.com/lyledean1/strava-mcp
cd strava-mcp
make build

Claude Code Configuration

Add to your Claude Code MCP configuration:

{
  "mcpServers": {
    "strava": {
      "command": "{pathToClonedRepo}/bin/strava-mcp",
      "args": [],
      "env": {
        "STRAVA_CLIENT_SECRET": "{clientSecret}",
        "STRAVA_CLIENT_ID": "{clientID}",
        "FOLDER_PATH": "{pathToClonedRepo}"
      }
    }
  }
}

Replace {pathToClonedRepo}, {clientSecret}, and {clientID} with your actual values.