Skip to main content
Glama

create_manual_activity

Log activities done without a watch to Garmin Connect by specifying activity type, date, and duration. Optionally include start time, distance, or custom title to keep your fitness data complete.

Instructions

Log a manual activity in Garmin Connect — useful for activities done without a watch.

The type_key must match a Garmin activity type. Use get_activity_types to see the full list. Common values: yoga, strength_training, meditation, indoor_cycling, pilates, bouldering, fitness_equipment.

Args: type_key: Activity type key (e.g. "yoga", "strength_training") date: Date of the activity in YYYY-MM-DD format duration_minutes: Duration of the activity in minutes start_time: Start time as HH:MM (24-hour, default 09:00) activity_name: Optional title; defaults to the type_key if not provided distance_km: Distance in kilometres (default 0.0 for non-distance activities) time_zone: IANA time zone for the activity (default UTC)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes
type_keyYes
time_zoneNoUTC
start_timeNo09:00
distance_kmNo
activity_nameNo
duration_minutesYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only says 'Log' and lists input constraints; it does not mention side effects, permissions, reversibility, validation failures, or whether it overwrites anything. For a write operation this is a significant gap.

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

Conciseness4/5

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

The description is front-loaded with the purpose, followed by a useful type_key note and a compact Args list. It repeats a few defaults already in the schema, but the extra format details earn their place. No filler or fluff.

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 7-parameter write tool with no annotations, the description covers the parameter space well and directs agents to the right reference for valid type_key values. It avoids explaining return values because an output schema exists. Missing error-handling details, but the essentials are present.

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 compensates thoroughly: it documents every parameter with formats (YYYY-MM-DD, HH:MM), defaults (09:00, UTC, 0.0, default to type_key), and a meaningful controlled vocabulary for type_key, including a pointer to get_activity_types. This adds exactly the meaning the schema lacks.

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?

States a specific verb and resource: 'Log a manual activity in Garmin Connect'. The phrase 'manual activity' and 'without a watch' distinguishes it from workout-creation and upload tools like create_strength_workout or upload_workout. Clear intent, no ambiguity.

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

Usage Guidelines4/5

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

Explicitly gives the primary use case ('useful for activities done without a watch') and instructs the agent to use get_activity_types for valid type_key values. It does not explicitly name alternatives or exclusions, but the context is sufficient for tool routing.

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