Skip to main content
Glama
sedoglia

Garmin Connect MCP Server

by sedoglia

Get Workouts

get_workouts
Read-only

Get scheduled or planned workouts from Garmin Connect. Use limit and start to paginate through your training schedule.

Instructions

Get list of scheduled/planned workouts from Garmin Connect.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of workouts to return (1-100)
startNoStarting index for pagination (0-based)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.3.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint and openWorldHint, so the safe read-only nature is established. The description adds source and scope (scheduled/planned workouts) but does not describe pagination behavior, defaults, or ordering beyond what the schema already exposes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One clear, compact sentence with no filler. Every word contributes to understanding the tool's purpose and scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only list operation with two optional, well-documented parameters and helpful annotations, the description is sufficient. It states what is returned and the source, though it could optionally mention default pagination behavior or return ordering.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides 100% coverage for both parameters, including descriptions and constraints. The tool description adds no parameter-specific meaning beyond what the schema already documents.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it returns a list of scheduled/planned workouts from Garmin Connect, using a specific verb and resource. This distinguishes it from related tools like get_workout_by_id or download_workout.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus alternatives such as get_workout_by_id or schedule_workout. The description implies its purpose but provides no exclusions or comparisons.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools