Skip to main content
Glama
trenerok

oura-mcp-server

by trenerok

get_daily_spo2

Retrieve daily blood oxygen saturation (SpO2) averages from Oura Ring by specifying start and end dates.

Instructions

Get daily blood oxygen saturation (SpO2) data. Returns average SpO2 percentage readings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
end_dateNo
next_tokenNo
start_dateNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It mentions the return value ('average SpO2 percentage readings'), but omits pagination (next_token), date-range semantics, auth requirements, and error behavior. Minimal transparency.

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, front-loaded with the core purpose and return value. No filler; appropriate length for a simple getter.

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

Completeness2/5

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

For a tool with 0% schema coverage and no annotations, the description is too sparse: it leaves date filtering and pagination unexplained, making correct invocation difficult without outside knowledge.

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

Parameters1/5

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

Schema description coverage is 0%, and the description provides no explanation of the three parameters (start_date, end_date, next_token). It does not compensate for the missing schema documentation.

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?

States a specific verb ('Get') and resource ('daily blood oxygen saturation (SpO2) data'). It does not differentiate from the sibling get_daily_spo2_by_id, which fetches a single record by ID, so the agent must infer the distinction from the name alone.

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?

No explicit when-to-use guidance or alternatives. The description only states what the tool returns; it does not mention when to choose it over get_daily_spo2_by_id or other daily metric tools.

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