Intervals.icu MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Intervals.icu MCP Serverlist my activities from last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Intervals.icu MCP Server
This is a Model Context Protocol (MCP) server for Intervals.icu. It allows you to interact with your Intervals.icu data, including activities, wellness data, and calendar events.
Configuration
You need an API Key and your Athlete ID from Intervals.icu.
Environment Variables
Variable | Description |
| Your Intervals.icu Athlete ID (e.g., |
| Your Intervals.icu API Key |
Setting Environment Variables
macOS / Linux
You can set environment variables in your terminal session or add them to your shell configuration file (e.g., .bashrc, .zshrc).
export INTERVALS_ATHLETE_ID="your_athlete_id"
export INTERVALS_API_KEY="your_api_key"To make them permanent, add the lines above to your ~/.zshrc or ~/.bashrc file and run source ~/.zshrc (or source ~/.bashrc).
Windows (Command Prompt)
set INTERVALS_ATHLETE_ID=your_athlete_id
set INTERVALS_API_KEY=your_api_keyNote: This sets the variables for the current session only. To set them permanently, use the System Properties dialog or setx.
Windows (PowerShell)
$env:INTERVALS_ATHLETE_ID="your_athlete_id"
$env:INTERVALS_API_KEY="your_api_key"To set them permanently:
[System.Environment]::SetEnvironmentVariable('INTERVALS_ATHLETE_ID', 'your_athlete_id', [System.EnvironmentVariableTarget]::User)
[System.Environment]::SetEnvironmentVariable('INTERVALS_API_KEY', 'your_api_key', [System.EnvironmentVariableTarget]::User)Related MCP server: Intervals.icu MCP Server
Usage
Run the server using the package:
npx @moxus/intervals-mcpOr if running from source:
node dist/index.jsVerify Command
You can verify your configuration and connection to Intervals.icu using the verify command. This will attempt to fetch your athlete profile.
npx @moxus/intervals-mcp verifyIf successful, you will see your athlete details. If it fails, check your API key and Athlete ID.
Gemini Installation
The simplest way to install this MCP server for Gemini is using the extension:
gemini extension install https://github.com/moxus/intervals-icu-geminiFor more details, refer to the Intervals.icu Gemini Extension repository.
Manual Configuration (Alternative)
To add this MCP server to a CLI agent like gemini-cli (or similar agents that support MCP) manually, you typically need to configure the agent to spawn this server process.
Assuming gemini-cli supports an MCP configuration file (like mcp_config.json or command line arguments), you would add an entry for @moxus/intervals-mcp.
Example configuration (conceptual):
{
"mcpServers": {
"intervals": {
"command": "npx",
"args": ["-y", "@moxus/intervals-mcp"],
"env": {
"INTERVALS_ATHLETE_ID": "your_athlete_id",
"INTERVALS_API_KEY": "your_api_key"
}
}
}
}Or if you are running it locally from source:
{
"mcpServers": {
"intervals": {
"command": "node",
"args": ["/path/to/intervals-icu-mcp-ts/dist/index.js"],
"env": {
"INTERVALS_ATHLETE_ID": "your_athlete_id",
"INTERVALS_API_KEY": "your_api_key"
}
}
}
}Consult the documentation of the specific agent you are using for the exact configuration format.
Tools
get_athlete_profile: Get athlete details.list_activities: Get activities within a date range.get_activity: Get full details of an activity.list_wellness: Get wellness logs.list_workouts: Get workouts from the library.create_workout: Create a workout in the library.list_events: Get calendar events.create_event: Create an event (workout, note, etc.) on the calendar.update_event: Update an existing event.delete_future_event: Delete an event.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceConnects Claude with the Intervals.icu API to retrieve fitness data including activities, workouts, wellness metrics, and training events.10334GPL 3.0
- FlicenseAqualityDmaintenanceEnables AI assistants to interact with Intervals.icu fitness tracking and wellness data, allowing users to fetch, filter, and group activities or health metrics. It provides structured summaries of workouts and physical well-being through natural language queries.4
- FlicenseAqualityCmaintenanceEnables AI assistants to access and analyze intervals.icu training data including activities, fitness metrics (CTL/ATL/TSB), wellness stats, and calendar events. Supports natural language querying of athletic performance for training insights and workout planning.6
- Alicense-qualityDmaintenanceIntegrates Intervals.icu training data, wellness records, workouts, and calendar events with AI assistants through MCP tools.121MIT
Related MCP Connectors
Garmin data in Claude & ChatGPT via the Garmin Health API. OAuth sign-in, no password sharing.
Garmin data in Claude: 135 tools — activities, sleep, HRV, training, workouts. Free, open source.
Create Hevy routines and analyze your training from chat. Unofficial; BYO Hevy PRO API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/moxus/intervals-icu-mcp-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server