Skip to main content
Glama

garmin_activities

Retrieve a paginated list of Garmin Connect activities, including IDs, names, types, start times, durations, and distances. Specify start index and limit to control results.

Instructions

List activities from Garmin Connect. start: index to start from, limit: max number to return. Returns activity IDs, names, types, start time, duration, distance, etc.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
startNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It does disclose that the operation returns a list of activity summaries and explains pagination semantics. However, it omits any mention of authentication prerequisites, session requirements, rate limits, or side effects—though 'list' implies a read-only operation.

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 two sentences with no superfluous content. It front-loads the purpose, then efficiently covers parameter semantics and return contents. The trailing 'etc.' is minor and acceptable given the output schema.

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?

The tool has only two optional parameters and an output schema, so the core pagination and return-value context is adequately covered. However, the absence of annotations combined with a likely authentication dependency—suggested by sibling tools like garmin_login and garmin_resume_session—leaves a meaningful gap. An agent would benefit from knowing whether a session must be established before calling this tool.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by defining both parameters: 'start: index to start from, limit: max number to return.' This adds meaningful semantics that the raw input schema lacks.

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 starts with a clear verb and resource: 'List activities from Garmin Connect.' It identifies the tool's core purpose and the returned fields, making it distinct from likely siblings like garmin_activity_details. However, it does not explicitly name or contrast any sibling, so it falls short of full differentiation.

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

Usage Guidelines3/5

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

The intended use is implied by 'List activities' and the start/limit pagination parameters, so an agent can infer this is for browsing activity summaries. But the description provides no explicit guidance on when to choose this tool over alternatives like garmin_activity_details, garmin_activity_types, or garmin_daily_summary.

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