intervals-icu-mcp
This server provides comprehensive integration with Intervals.icu, a training platform for endurance athletes, enabling you to access, analyze, and manage training data through 58 tools, 4 resources, and 7 prompts.
Activity Management
List, search, create, update, and delete activities
Download original or converted activity files (FIT, TCX, GPX)
Upload/overwrite raw time-series stream data
Batch-create manual activities with upsert support
Activity Analysis
Fetch second-by-second streams (power, HR, cadence, speed, GPS, etc.)
Get per-lap/interval breakdowns with targets vs. actuals
Find best efforts (peak power, HR, pace) within or across activities
View time-in-zone distributions for power, HR, pace, and grade-adjusted pace
Activity Messages
Read and post notes or comments on activities (e.g., coach-athlete feedback)
Athlete Profile & Fitness
Retrieve full athlete profile with sport settings
Get CTL/ATL/TSB fitness, fatigue, and form snapshots with training recommendations
Wellness Monitoring
Fetch wellness data over a date range (HRV, sleep, mood, stress, fatigue, weight, blood pressure, etc.)
Log or update daily wellness records
Calendar & Event Planning
View, create, update, delete, bulk-create, bulk-delete, and duplicate calendar events (workouts, races, notes, goals)
Apply entire training plans from the workout library to the calendar
Performance Curves
Get power, HR, and pace curves aggregated over selected time windows for fitness trend tracking
Workout Library
Browse workout library folders and training plans
List workouts within specific folders
Gear Management
List, create, update, and delete gear items (bikes, shoes, etc.)
Manage maintenance reminders based on distance or time
Sport Settings
View and update per-sport thresholds (FTP, FTHR, pace, swim threshold)
Recompute training load and zones on historical activities after threshold changes
Custom Item Management
List, create, update, and retrieve custom fields, charts, zones, and dashboard panels
Intervals.icu MCP Server

A Model Context Protocol (MCP) server for Intervals.icu integration. Access your training data, wellness metrics, and performance analysis through Claude, ChatGPT, and other LLMs.
Originally based on eddmann/intervals-icu-mcp (MIT licensed). This project is an independent continuation with significant bug fixes and new features — see CHANGELOG.md for details.
Overview
58 tools spanning activities, activity analysis, activity messages, athlete profile, wellness, events/calendar, performance curves, workout library, gear, sport settings, and custom items — plus 4 MCP Resources (athlete profile, workout syntax, event categories, custom item schemas) and 7 MCP Prompts (training analysis, recovery check, weekly planning, and more). See Available Tools for the per-category breakdown.
Related MCP server: Intervals.icu MCP Server
Quick Start
Or for Claude Desktop, in 30 seconds:
Get your API key and athlete ID
Add this to your Claude Desktop config:
{
"mcpServers": {
"intervals-icu": {
"command": "uvx",
"args": ["intervals-icu-mcp"],
"env": {
"INTERVALS_ICU_API_KEY": "your-api-key-here",
"INTERVALS_ICU_ATHLETE_ID": "i123456"
}
}
}
}Restart Claude and ask "Show me my activities from the last 7 days."
Prefer Claude Code, Cursor, or ChatGPT? See Client Configuration. Want to run from source or with Docker? See Installation & Setup.
Prerequisites
Install uv — it handles Python, dependencies, and execution in one tool. brew install uv on macOS/Linux, or powershell -c "irm https://astral.sh/uv/install.ps1 | iex" on Windows. From there, uvx fetches Python and the package automatically. Docker is also supported as an alternative.
Intervals.icu API Key Setup
Before installation, obtain your Intervals.icu API key:
Go to https://intervals.icu/settings → Developer → Create API Key.
Copy the key, and note your Athlete ID from your profile URL (format:
i123456).
Installation & Setup
Nothing to install separately if you use the recommended setup. uvx (which ships with uv) automatically downloads and caches the intervals-icu-mcp package the first time your MCP client launches it — just paste the config snippet from Client Configuration into your client and you're done.
git clone https://github.com/hhopke/intervals-icu-mcp.git
cd intervals-icu-mcp
uv sync
uv run intervals-icu-mcp-auth # interactive credential setup; or create .env manually:
# INTERVALS_ICU_API_KEY=your_api_key_here
# INTERVALS_ICU_ATHLETE_ID=i123456Then point your MCP client at this checkout — see the From source snippet inside each client below.
docker build -t intervals-icu-mcp .
# Interactive credential setup (creates intervals-icu-mcp.env in the current directory):
touch intervals-icu-mcp.env # pre-create the file so Docker mounts it as a file, not a dir
docker run -it --rm \
-v "$(pwd)/intervals-icu-mcp.env:/app/.env" \
--entrypoint= intervals-icu-mcp:latest \
python -m intervals_icu_mcp.scripts.setup_authOr create intervals-icu-mcp.env manually (same format as the .env above).
Then point your MCP client at the Docker image — see the Docker snippet inside each client below.
Client Configuration
The server speaks MCP over stdio and works with any compliant client. Click a client to expand. If you followed Quick Start (uvx), use the first config block; if you used the source or Docker alternative above, use the matching variant inside the same collapsible.
Add to your configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"intervals-icu": {
"command": "uvx",
"args": ["intervals-icu-mcp"],
"env": {
"INTERVALS_ICU_API_KEY": "your-api-key-here",
"INTERVALS_ICU_ATHLETE_ID": "i123456"
}
}
}
}From source (requires git clone + uv sync + uv run intervals-icu-mcp-auth):
{
"mcpServers": {
"intervals-icu": {
"command": "uv",
"args": ["run", "--directory", "/ABSOLUTE/PATH/TO/intervals-icu-mcp", "intervals-icu-mcp"]
}
}
}Docker:
{
"mcpServers": {
"intervals-icu": {
"command": "docker",
"args": ["run", "-i", "--rm", "-v", "/ABSOLUTE/PATH/TO/intervals-icu-mcp.env:/app/.env", "intervals-icu-mcp:latest"]
}
}
}Register the server as a user-scoped MCP server:
claude mcp add intervals-icu --scope user \
--env INTERVALS_ICU_API_KEY=your-key \
--env INTERVALS_ICU_ATHLETE_ID=i123456 \
-- uvx intervals-icu-mcpThen in any Claude Code session, run /mcp to confirm intervals-icu is connected.
Add to ~/.cursor/mcp.json (or the project-local .cursor/mcp.json):
{
"mcpServers": {
"intervals-icu": {
"command": "uvx",
"args": ["intervals-icu-mcp"],
"env": {
"INTERVALS_ICU_API_KEY": "your-api-key-here",
"INTERVALS_ICU_ATHLETE_ID": "i123456"
}
}
}
}Restart Cursor and open Settings → MCP to verify the server is listed.
ChatGPT's custom MCP connector flow requires running the server over HTTP and exposing it via a tunnel, then registering the URL in ChatGPT's Developer Mode settings. See docs/chatgpt-connector.md for the full walkthrough, plan-tier requirements, and security notes.
Usage
Ask Claude to interact with your Intervals.icu data in natural language. A few starter prompts:
"Show me my activities from the last 30 days"
"Am I overtraining? Check my CTL, ATL, and TSB"
"How's my recovery this week? Show HRV and sleep trends"
"Create a sweet spot cycling workout for tomorrow"
"What's my 20-minute power and FTP?"For the full catalogue of example prompts by category, see docs/examples.md.
Available Tools
58 tools, 4 resources, and 7 prompt templates. One-line summary below — full reference in docs/tools.md.
Category | Tools | Summary |
12 | Query, search, update, delete, download activities | |
8 | Streams, intervals, best efforts, histograms | |
2 | Read and post notes/comments/coach feedback on activities | |
2 | Profile and CTL/ATL/TSB fitness analysis | |
3 | HRV, sleep, recovery metrics | |
10 | Planned workouts, races, notes (bulk ops supported) | |
3 | Power, HR, and pace curves with zones | |
2 | Browse workout folders and training plans | |
6 | Track equipment and maintenance reminders | |
5 | FTP, FTHR, pace thresholds, and zones | |
5 | User customizations: custom charts, fields, zones, dashboard panels |
Delete Safety Mode
Destructive tools are gated by the optional INTERVALS_ICU_DELETE_MODE env var (safe / full / none, default safe) — a server-side gate outside the model's reach, so unregistered tools can't be invoked. See docs/tools.md for the full mode table, response envelope, and TZ-buffer rationale.
Remote Deployment (HTTP / SSE)
The server runs over stdio by default — the right transport for local clients like Claude Desktop, Claude Code, and Cursor. HTTP and SSE transports are available for remote or hosted use.
⚠️ MCP has no built-in authentication — never expose an HTTP-mode server to an untrusted network without a tunnel (Tailscale, Cloudflare Tunnel) or an authenticating reverse proxy.
See docs/remote-deployment.md for transport flags and the full security model.
Documentation
Example prompts — full catalogue of natural-language prompts by category
Tool reference — complete tool, resource, and prompt inventory
Architecture overview — how the server, middleware, client, and tools fit together
Remote deployment (HTTP/SSE) — transports, flags, and the security model for hosted/remote setups
Testing guide — conventions for pytest + respx, fixtures, and running the suite
Changelog — release history
Adding a new tool — step-by-step workflow for contributors
Contributing
Issues and pull requests are welcome. Before opening a PR, run make can-release locally to match what CI enforces (ruff, pyright, pytest). For new tools, follow the pattern in .claude/skills/add-tool/SKILL.md and add a respx-mocked test file alongside the implementation.
License
MIT License - see the LICENSE file for details.
Disclaimer
This project is not affiliated with, endorsed by, or sponsored by Intervals.icu. All product names, logos, and brands are property of their respective owners.
Maintenance
Appeared in Searches
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hhopke/intervals-icu-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server