drio
Open app

Интеграция Strava API с Model Context Protocol (MCP) SDK

Source

Интеграция Strava API с Model Context Protocol SDK

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Strava is an integration project that connects the Strava API with the Model Context Protocol (MCP) SDK to analyze workouts and provide training recommendations based on Strava data.

To use MCP Server Strava, clone the repository from GitHub, install the required dependencies, and set up your Strava API credentials. You can then run the server and access the API to analyze your activities.

  • Analyzes workouts from Strava - Provides training recommendations - Automatically updates tokens - Implements rate limiting for API requests
  1. Analyzing running or cycling workouts to improve performance.
  2. Generating personalized training plans based on past activities.
  3. Integrating with other applications that utilize Strava data for fitness tracking.

Add to your AI client

Use these steps to connect Интеграция Strava API с Model Context Protocol (MCP) SDK in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-strava-rbctmz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-strava-rbctmz"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-strava-rbctmz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-strava-rbctmz"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-strava-rbctmz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-strava-rbctmz"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-strava-rbctmz": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-strava-rbctmz"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-strava-rbctmz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-strava-rbctmz"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-strava-rbctmz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-strava-rbctmz"
      ]
    }
  }
}

FAQ

What programming language is used?

The project is developed in Python 3.10 and above.

Is there a license for this project?

Yes, the project is licensed under the MIT License.

How can I contribute to the project?

You can fork the repository, make changes, and submit a pull request.