Wahoo 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., "@Wahoo MCP Serverlist my recent workouts"
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.
Wahoo MCP Server
A Model Context Protocol (MCP) server for interacting with the Wahoo Cloud API, focusing on reading workout information.
Features
Workouts: List workouts with pagination and date filtering, get detailed workout information
Routes: List and retrieve saved cycling/running routes
Training Plans: Access and create training plan templates in your Wahoo account
Workout Scheduling: Schedule workouts on the calendar and attach plans for ELEMNT app visibility
Power Zones: View power zone configurations for different workout types
OAuth 2.0 Authentication: Secure authentication with automatic token refresh
Comprehensive workout type support: 72 different workout types with location and family categorization
Async/await implementation: High-performance async operations using httpx
Automatic token management: Tokens are refreshed automatically when they expire
Related MCP server: Wahoo MCP Server
Installation
Using uv (recommended)
First, install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | shThen install the project dependencies:
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .For development:
uv pip install -e ".[dev]"Using pip (alternative)
If you prefer using pip:
python3.13 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e .For development:
pip install -e ".[dev]"Configuration
Getting an Access Token
Register your application at Wahoo's Developer Portal to get a Client ID and Client Secret.
Create a
.envfile from the example:cp .env.example .envThen edit
.envand add your credentials:WAHOO_CLIENT_ID=your_client_id_here WAHOO_CLIENT_SECRET=your_client_secret_hereSet the token file path in your
.envfile:WAHOO_TOKEN_FILE=token.jsonUse the authentication helper:
make auth # or uv run python src/auth.pyThis will:
Use credentials from
.env(or prompt if not set)Open a browser for OAuth authentication
Start a local server to receive the callback
Save your tokens to the file specified by
WAHOO_TOKEN_FILETokens will be automatically refreshed when needed
Configuration Options
The auth server can be configured via environment variables:
Server Configuration:
WAHOO_AUTH_HOST: Auth server bind address (default:localhost)WAHOO_AUTH_PORT: Auth server port (default:8080)
Redirect URL Configuration:
WAHOO_REDIRECT_HOST: OAuth callback host (default: usesWAHOO_AUTH_HOST)WAHOO_REDIRECT_PORT: OAuth callback port (default: usesWAHOO_AUTH_PORT)WAHOO_REDIRECT_SCHEME: URL scheme -httporhttps(default:http)
Credentials:
WAHOO_CLIENT_ID: Your Wahoo Client IDWAHOO_CLIENT_SECRET: Your Wahoo Client SecretWAHOO_TOKEN_FILE: Path to store OAuth tokens (required)
Example Configurations:
Local Development (default):
# Redirect URL will be: http://localhost:8080/callbackUsing ngrok:
WAHOO_AUTH_HOST=localhost WAHOO_AUTH_PORT=8080 WAHOO_REDIRECT_HOST=your-app.ngrok.io WAHOO_REDIRECT_PORT=443 WAHOO_REDIRECT_SCHEME=https # Redirect URL will be: https://your-app.ngrok.io:443/callback
Note: When registering your app with Wahoo, use the redirect URL that matches your configuration.
Usage
Running the MCP Server
uv run python -m src.serverOr if you've activated the virtual environment:
python -m src.serverUsing with Claude Desktop
Add the following to your Claude Desktop configuration file:
Configuration file location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Example configuration:
{
"mcpServers": {
"wahoo": {
"type": "stdio",
"command": "/path/to/uv",
"args": [
"--project",
"/path/to/wahoo-mcp",
"run",
"python",
"-m",
"src.server"
],
"env": {
"WAHOO_TOKEN_FILE": "/path/to/wahoo-mcp/token.json"
}
}
}
}Make sure to replace /path/to/ with your actual paths.
Available Tools
list_workouts
List workouts from your Wahoo account.
Parameters:
page(optional): Page number (default: 1)per_page(optional): Number of items per page (default: 30)start_date(optional): Filter workouts created after this date (ISO 8601 format)end_date(optional): Filter workouts created before this date (ISO 8601 format)
Example:
Use the list_workouts tool to show my recent workoutsget_workout
Get detailed information about a specific workout.
Parameters:
workout_id(required): The ID of the workout to retrieve
Example:
Use the get_workout tool to get details for workout ID 12345list_routes
List routes from your Wahoo account.
Parameters:
external_id(optional): Filter routes by external ID
Example:
Use the list_routes tool to show my saved routesget_route
Get detailed information about a specific route.
Parameters:
route_id(required): The ID of the route to retrieve
Example:
Use the get_route tool to get details for route ID 456list_plans
List training plans from your Wahoo account.
Parameters:
external_id(optional): Filter plans by external ID
Example:
Use the list_plans tool to show my training plansget_plan
Get detailed information about a specific plan.
Parameters:
plan_id(required): The ID of the plan to retrieve
Example:
Use the get_plan tool to get details for plan ID 789list_power_zones
List power zones from your Wahoo account.
Parameters: None
Example:
Use the list_power_zones tool to show my power zonesget_power_zone
Get detailed information about a specific power zone.
Parameters:
power_zone_id(required): The ID of the power zone to retrieve
Example:
Use the get_power_zone tool to get details for power zone ID 321create_plan
Create a reusable training plan template in your Wahoo account. A plan holds the workout structure — intervals, power/HR targets, and duration — but has no date and is not tied to a specific ride. It will not appear in the ELEMNT app on its own; use create_workout to schedule it.
Parameters:
plan(required): Complete workout plan structure containing:name(required): Name of the workout plandescription(optional): Description of the workoutintervals(required): List of workout intervals, each containing:duration(required): Duration in secondstargets(required): List of targets (power, heart_rate, speed, pace, rpe, cadence)name(optional): Name/description of the intervalinterval_type(optional): Type (work, rest, warmup, cooldown, tempo, threshold, recovery, active, or Wahoo types: wu, cd, lt, map, ac, nm, ftp, recover)
workout_type(optional): Type of workout (bike, run, swim) - defaults to "bike"estimated_duration(optional): Estimated total duration in secondsestimated_tss(optional): Estimated Training Stress Score
external_id(required): Unique external ID for the planprovider_updated_at(required): External date/time the file was updated (ISO 8601 format)filename(optional): Name of the plan file
Example:
Use the create_plan tool to create a new training plan with intervals for power and heart rate zonescreate_workout
Schedule a workout on the calendar and optionally attach a plan to it. A workout is a scheduled instance — a calendar entry with a name, start time, and duration. Attaching a plan_id links the plan template to that slot.
Important: For a plan to appear in the Wahoo ELEMNT app, it must be attached to a workout scheduled within the current day through 6 days from now. A plan alone (without a linked workout) does not appear in the ELEMNT app.
Parameters:
name(required): Workout nameworkout_token(required): Unique app-side identifier (e.g. a UUID or slug)workout_type_id(required): Workout type ID (e.g.0for outdoor biking,12for indoor biking,1for running outdoor)starts(required): ISO 8601 datetime for when the workout starts — must be within the current day through 6 days from now for ELEMNT app visibilityminutes(required): Workout duration in minutesplan_id(optional): ID of a previously created plan to attach to this workoutroute_id(optional): ID of a route to attach to this workout
Example — scheduling a plan for tomorrow:
First use create_plan to create the plan, then use create_workout with the returned plan_id and a starts date within the next 6 daysTypical workflow: plan a training session for the ELEMNT app
Call
create_planwith your intervals and targets → note the returnedidCall
create_workoutwithplan_idset to thatidandstartsset to a date within the next 6 daysThe workout (with the attached plan) will appear in the Wahoo ELEMNT app
Development
Running Tests
uv run pytestOr if you've activated the virtual environment:
pytestProject Structure
wahoo-mcp/
├── src/
│ ├── __init__.py
│ ├── server.py # Main MCP server implementation
│ ├── auth.py # OAuth authentication helper
│ ├── token_store.py # Token storage and refresh logic
│ └── models.py # Pydantic models for API data structures
├── tests/
│ ├── __init__.py
│ ├── test_server.py # Server test suite
│ └── test_token_store.py # Token store tests
├── pyproject.toml # Project configuration
└── README.md # This fileAPI Reference
The server implements the following Wahoo Cloud API endpoints:
Workouts:
GET /v1/workouts- List workouts with pagination and date filteringGET /v1/workouts/{id}- Get detailed workout information
Routes:
GET /v1/routes- List saved routesGET /v1/routes/{id}- Get route details including GPS data
Training Plans:
GET /v1/plans- List training plansGET /v1/plans/{id}- Get plan detailsPOST /v1/plans- Create a new training plan template
Workout Scheduling:
POST /v1/workouts- Schedule a workout and optionally attach a plan
Power Zones:
GET /v1/power_zones- List power zone configurationsGET /v1/power_zones/{id}- Get specific power zone details
For full API documentation, see Wahoo Cloud API.
License
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
Available Tools
7 toolscreate_workoutA
Schedule a new workout and optionally attach a plan to it. A plan must be attached to a workout scheduled within the current day through 6 days from now to appear in the Wahoo ELEMNT app.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Workout name | |
| starts | Yes | ISO 8601 datetime for when the workout starts. Must be within the current day through 6 days from now for the plan to appear in the ELEMNT app. | |
| minutes | Yes | Workout duration in minutes | |
| plan_id | No | ID of a previously created plan to attach to this workout | |
| route_id | No | ID of a route to attach to this workout | |
| workout_token | Yes | Unique app-side identifier for this workout (e.g. a UUID or slug) | |
| workout_type_id | Yes | Workout type ID (e.g. 0 for biking outdoor, 12 for indoor biking, 1 for running) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the primary behavior and a key constraint (date range for plan visibility). However, it omits important details such as idempotency, handling of duplicate workout_token, response format, and error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. The first sentence front-loads the primary purpose, and the second adds a critical constraint. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 7 parameters (5 required) and no output schema, the description provides core functionality and a key constraint, but lacks information about return values, error cases, and exact behavior of optional parameters like route_id. It is somewhat complete but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds meaningful context beyond the schema: it explains the condition for a plan to appear in the ELEMNT app, which is not fully captured in the parameter descriptions. This extra guidance improves selection correctness.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: 'Schedule a new workout and optionally attach a plan to it.' It specifies the verb (schedule) and resource (workout), and distinguishes from all sibling tools which are read-only get/list operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used when creating a workout, and provides a specific constraint regarding plan attachment and date range for ELEMNT app visibility. It does not explicitly state when not to use it, but the context of siblings (all read-only) makes the usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_planC
Get detailed information about a specific plan
| Name | Required | Description | Default |
|---|---|---|---|
| plan_id | Yes | The ID of the plan to retrieve |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description should compensate. It only states 'get detailed information' but does not disclose that it is a read-only, idempotent operation, or what happens on error (e.g., invalid plan_id). The behavioral profile is under-specified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 8 words, which is concise but too minimal. It lacks any structure (e.g., multiple sentences or bullet points) that could enhance readability while staying brief.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with one parameter and no output schema, the description is adequate but not complete. It does not hint at the return structure (e.g., includes exercises, duration) or any constraints. Given the low complexity, it meets the minimum viable level.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a description for the only parameter (plan_id). The tool description adds no extra meaning beyond what the schema already provides, which meets the baseline for a fully documented schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (get) and resource (plan). It is specific enough to distinguish from siblings like list_plans (listing) and create_workout (creation). However, it does not elaborate on what 'plan' means or how it differs from other 'get' tools like get_power_zone.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No usage guidance is given. There is no mention of when to use this tool versus alternatives (e.g., list_plans for overview, or get_power_zone for specific data). The description omits prerequisites or context for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_power_zoneB
Get detailed information about a specific power zone
| Name | Required | Description | Default |
|---|---|---|---|
| power_zone_id | Yes | The ID of the power zone to retrieve |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description bears full burden. It indicates a read operation ('Get') but does not explicitly state it is non-destructive or confirm safety.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no redundancy, front-loaded with the action. It is concise but could be more informative without losing brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with one required parameter and no output schema, the description is minimally adequate but lacks usage guidance and behavioral details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds no extra meaning to the parameter beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Get detailed information about a specific power zone', which clearly indicates a retrieval operation for a single resource. It distinguishes from sibling list_power_zones by specifying 'specific'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit instructions on when to use this tool versus alternatives. The intended use is implied (when you have a specific power_zone_id), but no exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_plansC
List plans from Wahoo Cloud API
| Name | Required | Description | Default |
|---|---|---|---|
| external_id | No | Filter plans by external ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavior. It only says 'List plans', implying a read operation, but omits details like permissions, side effects, or return format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely brief (7 words), which is efficient but lacks necessary detail. It is not overly verbose, but the conciseness comes at the cost of completeness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and only one optional parameter, the description fails to explain what the list returns (e.g., array of plan objects), pagination, or filtering behavior. It is incomplete for practical use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter with a description, achieving 100% coverage. The tool description adds no extra meaning beyond what the schema provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'List plans from Wahoo Cloud API', clearly indicating the action (list) and resource (plans). It's distinct from sibling 'get_plan' which implies a single plan retrieval, but it doesn't explicitly differentiate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No usage guidelines are provided. The description does not specify when to use this tool versus alternatives like get_plan or other list tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_power_zonesB
List power zones from Wahoo Cloud API
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It only states it lists power zones, with no info on authentication needs, pagination, rate limits, or data freshness.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no unnecessary words. For a tool with no parameters, it is appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and sibling tools, the description should clarify how list differs from get or other operations. It fails to provide enough context for correct invocation without prior knowledge.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so the description is the sole source of meaning. It adds value by naming the resource, but lacks details on what constitutes a power zone or the output structure.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists power zones from the Wahoo Cloud API. It uses a specific verb and resource, but does not differentiate from sibling tools like get_power_zone.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives, such as get_power_zone for a single zone. No pre-conditions or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_routesC
List routes from Wahoo Cloud API
| Name | Required | Description | Default |
|---|---|---|---|
| external_id | No | Filter routes by external ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It fails to disclose important behaviors such as authentication requirements, pagination, or read-only nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single concise sentence with no unnecessary words. However, it could be more informative without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (list with one optional filter), the description is adequate but lacks return value information and behavioral context, which would be important given no output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and includes a parameter description. The tool description adds no new meaning beyond the schema, so baseline score is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states 'List routes' with source, clearly identifying the resource and action. It distinguishes from sibling tools like list_workouts by referencing a different resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. With siblings present, it would be beneficial to recommend this over list_workouts for routes.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_workoutsC
List workouts from Wahoo Cloud API
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1) | |
| end_date | No | Filter workouts created before this date (ISO 8601 format) | |
| per_page | No | Number of items per page (default: 30) | |
| start_date | No | Filter workouts created after this date (ISO 8601 format) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It only states 'List workouts' and does not mention pagination, filtering behavior, authentication, or any side effects. The schema parameter descriptions are not repeated in the tool description.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words, but it is slightly under-specified. It earns its place but could be longer with benefit.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description should explain what the response contains, how pagination works, and filtering date format. It lacks these details, making it incomplete for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description does not add extra meaning beyond the schema; it does not explain date format or pagination behavior in prose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and resource 'workouts', distinguishing it from sibling tools like create_workout and list_plans, though it does not explicitly differentiate from other list tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives, no context about prerequisites or when not to use it. With siblings like list_plans, list_routes, users need more direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct resource and action: workouts, plans, power zones, and routes with clear CRUD-like verbs. No overlap in functionality.
All tool names follow a consistent verb_noun pattern (create_, get_, list_) with underscores. No mixing of conventions.
Seven tools is well-scoped for the Wahoo fitness domain, covering essential operations without unnecessary bloat.
Missing get_workout, get_route, and CRUD operations for plans, power zones, and routes beyond list and get. Gaps may require workarounds.
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 Connectors
Remote MCP server for training, nutrition, wellness, and performance data with OAuth 2.0.
MCP server for Withings health data — sleep, activity, heart, and body metrics.
MCP server wrapping the Tesla Fleet API and TeslaMate API
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables users to access Strava fitness data, including user activities, activity details, segments, and leaderboards through a structured API interface.34MIT
- AlicenseBqualityDmaintenanceAn MCP server for interacting with the Wahoo Cloud API to manage workouts, routes, training plans, and power zones. It enables users to list, retrieve, and create fitness data through secure OAuth 2.0 authentication.97GPL 3.0
- AlicenseAqualityAmaintenanceA Model Context Protocol (MCP) server that fetches sleep, HRV, and training data from the unofficial Coros API and exposes them to AI assistants like Claude, enabling natural language queries about fitness metrics and workout management.26114MIT
- AlicenseNot gradedqualityDmaintenanceThis Model Context Protocol (MCP) server connects to Garmin Connect and exposes your fitness and health data to Claude and other MCP-compatible clients.1MIT
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/ClemensHar/wahoo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server