Skip to main content
Glama

get_spo2

Retrieve daily blood oxygen (SpO2) metrics including average, lowest, latest, sleep average, and timeline readings for any date.

Instructions

Blood oxygen (SpO2 / pulse ox) for a day: average, lowest, latest, sleep average, timeline.

Args: date: Calendar date in YYYY-MM-DD format. Defaults to today.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoCompacted Garmin payload; null if unavailable.
noteNoExplains missing data or truncation.
paramsNoParameters used.
sourceYesGarmin Connect API method the data came from.

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?

No annotations are provided, so the description carries the full disclosure burden. It does reveal behavioral detail by listing the returned metrics and the date default, but it does not cover what happens for dates with no recorded data, data source assumptions, or any other runtime behavior. Adequate but thin.

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 short sentences with no filler. The resource-plus-scope statement is front-loaded, and the Args line earns its place by supplying format and default information the schema omits. Nothing needs to be cut.

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?

Given a single optional parameter and the presence of an output schema, the description covers the essential ground: what the tool returns, the parameter format, and the default behavior. The only notable omission is empty/missing-data behavior, which is minor for a simple daily-metric tool.

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 for the undocumented date parameter, and it does. It adds the concrete YYYY-MM-DD format and clarifies that a null/default date resolves to today, both of which the schema does not state. Only a small amount of extra semantics (e.g., valid date range) is missing.

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 names a specific resource (blood oxygen / SpO2 / pulse ox), a clear scope (a single day), and enumerates exactly what is returned (average, lowest, latest, sleep average, timeline). It is unambiguous and clearly distinct from the large sibling family, none of which covers SpO2.

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?

There is no when-to-use vs. when-not-to-use guidance and no alternatives are named. With overlapping siblings like get_respiration, get_daily_summary, and get_stats_and_body that could plausibly surface SpO2 data, the description leaves the agent to infer selection purely from the metric name.

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