MCP Catalogs
Home

strava-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

strava-mcp
by kw510
everything
by modelcontextprotocol
Stars★ 26★ 85,748
30d uses
Score3577
Official
Categories
Developer ToolsfitnessAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

strava-mcp · Summary

MCP server with Strava OAuth integration for secure authentication and tool access.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

strava-mcp · Use cases

  • Integrate Strava fitness data with AI assistants for personalized training insights
  • Enable MCP clients to securely access user's activity history and performance metrics
  • Build applications that combine AI analysis with fitness tracking data

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

strava-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/kw510/strava-mcp.git
cd strava-mcp
npm install
  1. Set up Strava API credentials
  1. Configure Cloudflare KV namespace:
wrangler kv:namespace create "OAUTH_KV"
  1. Deploy to Cloudflare:
wrangler deploy

Claude Desktop Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "strava": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp-strava-oauth.<your-subdomain>.workers.dev/sse"
      ]
    }
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.