MCP Catalogs
Home

intervals-icu-mcp vs everything

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

intervals-icu-mcp
by eddmann
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4377
Official
Categories
ProductivityhealthAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit6 mo agothis month

intervals-icu-mcp · Summary

Comprehensive MCP server for Intervals.icu integration with 48 tools for training data, wellness metrics, and performance analysis.

everything · Summary

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

intervals-icu-mcp · Use cases

  • Analyze cycling or running performance metrics and training data
  • Plan and manage workout schedules and training events
  • Track wellness metrics including recovery, sleep, and HRV
  • Manage cycling and running gear with maintenance tracking
  • Review historical activities and performance curves

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

intervals-icu-mcp · Install

Installation

Prerequisites

  • Python 3.11+ and [uv](https://github.com/astral-sh/uv), OR
  • Docker

Authentication Setup

  1. Get your Intervals.icu API key from https://intervals.icu/settings
  2. Note your Athlete ID from your profile URL (format: i123456)

Option 1: Using UV

cd intervals-icu-mcp
uv sync

# Configure credentials
uv run intervals-icu-mcp-auth

Option 2: Using Docker

docker build -t intervals-icu-mcp .

# Create and configure env file
touch intervals-icu-mcp.env
docker run -it --rm -v "$(pwd)/intervals-icu-mcp.env:/app/.env" intervals-icu-mcp:latest python -m intervals_icu_mcp.scripts.setup_auth

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "intervals-icu": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/ABSOLUTE/PATH/TO/intervals-icu-mcp",
        "intervals-icu-mcp"
      ]
    }
  }
}

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.