Skip to main content
Glama

garmin_login

Log in to Garmin Connect using email and password, saving the session to a local file for reuse in later requests without re-authentication.

Instructions

Log in to Garmin Connect with email and password. Saves the session to the given path (default: ~/.garth) so you can use resume_session later without logging in again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes
passwordYes
session_pathNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It explicitly discloses the key side effect: saving the session to a given path, with a default of ~/.garth, and explains the consequence for later session reuse.

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?

Two tight sentences with no wasted words. The first states the core action, and the second adds the essential side effect and default path. It is well front-loaded and easy to parse.

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 login tool, the description covers the key operational details: credentials, session persistence, default path, and the path to later session reuse. The presence of an output schema means return-value details are not required in the description.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It mentions email and password, and adds meaning to session_path by explaining the default path (~/.garth), which clarifies the schema's empty string default. The params are simple enough that this is sufficient.

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 states a specific verb ('Log in'), the target system ('Garmin Connect'), and the required credentials ('email and password'). It also differentiates itself from siblings like garmin_resume_session by explaining that the session is saved for later reuse.

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?

The description clearly implies when to use this tool: as the initial authentication step before using resume_session. It does not spell out 'use this when no session exists,' but the saved-session note gives an agent enough context to choose it correctly.

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