MCP Catalogs
Home

garmin-connect-mcp vs everything

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

garmin-connect-mcp
by eddmann
everything
by modelcontextprotocol
Stars★ 36★ 85,748
30d uses
Score4177
Official
Categories
healthProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit6 mo agothis month

garmin-connect-mcp · Summary

A fully-featured MCP server providing comprehensive tools for Garmin Connect data access.

everything · Summary

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

garmin-connect-mcp · Use cases

  • Analyze training performance and trends over time
  • Get detailed activity insights including splits and heart rate zones
  • Monitor health metrics like sleep quality and body battery

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

garmin-connect-mcp · Install

Installation

Option 1: Using UV

cd garmin-connect-mcp
uv sync

Create a .env file with your credentials:

GARMIN_EMAIL=your-email@example.com
GARMIN_PASSWORD=your-password

Option 2: Using Docker

docker pull ghcr.io/eddmann/garmin-connect-mcp:latest

Create garmin-connect-mcp.env with your credentials.

Claude Desktop Configuration

{
  "mcpServers": {
    "garmin": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/ABSOLUTE/PATH/TO/garmin-connect-mcp",
        "garmin-connect-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.