Nolio MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_profileA | Get the authenticated user's Nolio profile (id, name). |
| get_planned_workoutsB | Retrieve planned workouts from your coach's training program. Args: from_date: Start date filter (YYYY-MM-DD) to_date: End date filter (YYYY-MM-DD) limit: Max results to return (default 30) id: Specific planned workout ID to retrieve |
| get_workoutsA | Retrieve completed/logged workouts. Args: from_date: Start date filter (YYYY-MM-DD) to_date: End date filter (YYYY-MM-DD) limit: Max results to return (default 30) id: Specific workout ID to retrieve |
| get_workout_streamsA | Get detailed time-series data for a specific workout (HR, pace, power, cadence, altitude). Args: id: Workout ID |
| get_notesA | Retrieve notes (injury, availability, illness, rest, etc.). Args: from_date: Start date filter (YYYY-MM-DD) to_date: End date filter (YYYY-MM-DD) limit: Max results to return (default 30) note_type: Filter by type: blessure, dispo, inconfort, goal, indispo, malade, menstruel, repos id: Specific note ID to retrieve |
| get_metricsA | Get a specific metric entry by its ID. Requires special API authorization. Args: id: Metric entry ID |
| get_user_metadataC | Get user metadata including goals, weight history, HR, sleep, aerobic speed, FTP. Requires special API authorization. Args: from_date: Start date filter (YYYY-MM-DD) to_date: End date filter (YYYY-MM-DD) limit: Max results to return (default 15) |
| get_recordsA | Get personal records (power, HR, pace, etc.). Args: cat: Record category — ppr (power), phrr (HR), par (pace), ptr (time), pvar (speed), pcadr (cadence) record_type: Either 'time' or 'distance' from_date: Start date filter (YYYY-MM-DD) to_date: End date filter (YYYY-MM-DD) sports: Comma-separated sport IDs (e.g. '9,23') items: Comma-separated durations in seconds or distances in meters |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| authenticate | Authenticate with Nolio to obtain API tokens. Run this if you haven't set up credentials yet or if your tokens have expired. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct entity (metrics, notes, planned workouts, profile, records, user metadata, workouts, workout streams) with no overlap. Descriptions clearly differentiate their purposes.
All tools follow a consistent 'get_<noun>' pattern using snake_case, making it easy to predict tool names and understand their actions.
8 tools is a well-scoped set for a personal fitness data server, covering key data retrieval needs without being excessive or insufficient.
The tool set provides comprehensive read access to the platform's data (metrics, notes, workouts, profile, records, metadata, streams). However, it lacks any creation, update, or deletion tools, which may be a gap for agents needing to modify data.