ultimate_mcp_server vs intervals-icu-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | intervals-icu-mcp by eddmann | |
|---|---|---|
| Stars | ★ 149 | ★ 25 |
| 30d uses | — | — |
| Score | 85 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | ProductivityhealthAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 6 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
intervals-icu-mcp · Summary
Comprehensive MCP server for Intervals.icu integration with 48 tools for training data, wellness metrics, and performance analysis.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverintervals-icu-mcp · Install
Installation
Prerequisites
- Python 3.11+ and [uv](https://github.com/astral-sh/uv), OR
- Docker
Authentication Setup
- Get your Intervals.icu API key from https://intervals.icu/settings
- 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-authOption 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_authClaude 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"
]
}
}
}