Skip to main content
Glama
sedoglia

Garmin Connect MCP Server

by sedoglia

Get Training Plan by ID

get_training_plan_by_id
Read-only

Retrieve complete details of a specific training plan by providing its unique plan ID to access workout schedules and metrics.

Instructions

Get detailed information about a specific training plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
planIdYesThe unique training plan identifier (required)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.3.0

TDQS

B3.1/5.0
Behavior2/5

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

The annotations already indicate readOnlyHint=true, so the description doesn't need to repeat that. However, it adds no extra behavioral context, such as whether the returned 'detailed information' includes nested objects, links, or any special handling. The openWorldHint is not explained either.

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?

The description is a single, concise sentence that directly states the tool's purpose with no wasted words.

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

Completeness3/5

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

For a simple get-by-id operation with a single required parameter and read-only annotation, the description is adequately functional. However, it lacks information about the return format (no output schema exists) and could benefit from clarifying that this is for a single plan, contrasting with a list endpoint.

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 schema already provides 100% coverage for the single 'planId' parameter with a clear description. The tool description adds no additional parameter meaning, so the baseline of 3 applies.

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

Purpose4/5

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

The description clearly states the tool retrieves detailed information about a specific training plan. The verb 'Get' and resource 'specific training plan' make the purpose clear, but it doesn't explicitly distinguish from the sibling tool 'get_training_plans' (plural).

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?

The description gives no guidance on when to use this tool versus alternatives like 'get_training_plans' or other training-related tools. It doesn't mention prerequisites, such as needing a valid planId, nor any scenarios where this should be preferred.

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