MCP Catalogs
Home

trainingpeaks-mcp vs everything

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

trainingpeaks-mcp
by JamsusMaximus
everything
by modelcontextprotocol
Stars★ 65★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsProductivityhealth
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

trainingpeaks-mcp · Summary

TrainingPeaks MCP server enables querying workouts, fitness data, and PRs via natural language.

everything · Summary

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

trainingpeaks-mcp · Use cases

  • Build structured training workouts with intervals and automatically calculated IF/TSS
  • Compare FTP progression and fitness metrics (CTL/ATL/TSB) between different periods
  • Schedule workouts and manage training calendar with natural language commands
  • Log health metrics and track progress over time

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

trainingpeaks-mcp · Install

Option A: Auto-Setup with Claude Code

If you have [Claude Code](https://claude.ai/code), paste this prompt:

Set up the TrainingPeaks MCP server from https://github.com/JamsusMaximus/trainingpeaks-mcp - clone it, create a venv, install it, then walk me through getting my TrainingPeaks cookie from my browser and run tp-mcp auth. Finally, add it to my Claude Desktop config.

Option B: Manual Setup

Step 1: Install
git clone https://github.com/JamsusMaximus/trainingpeaks-mcp.git
cd trainingpeaks-mcp
python3 -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate
pip install -e .
Step 2: Authenticate
pip install tp-mcp[browser]  # One-time: install browser support
tp-mcp auth --from-browser chrome  # Or: firefox, safari, edge, auto
Step 3: Add to Claude Desktop

Run this to get your config snippet:

tp-mcp config

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows) and paste it inside mcpServers:

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.