Skip to main content
Glama
trenerok

oura-mcp-server

by trenerok

get_daily_readiness

Retrieve Oura Ring daily readiness scores with contributor breakdowns, including activity balance, body temperature, HRV balance, recovery index, and sleep metrics to assess recovery.

Instructions

Get daily readiness scores with contributor breakdown. Returns readiness score with contributors like activity balance, body temperature, HRV balance, recovery index, and sleep metrics.

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 carries the full behavioral burden, and it is thin: nothing about pagination behavior despite a next_token parameter, nothing about date-range defaults, history limits, or permissions. The only behavioral disclosure is the shape of the payload, which is useful but not enough for a tool with zero annotation coverage.

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?

Two tight sentences with the purpose front-loaded and no filler. The second sentence slightly restates the first ('readiness score with contributors' after 'with contributor breakdown'), which is minor redundancy rather than bloat.

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 parameterized, paginated retrieval tool with no annotations, no output schema, and 0% parameter documentation, the description leaves too much unspecified. An agent still cannot determine valid date formats, whether a range is required, or how to page through results.

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

Parameters2/5

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

Schema description coverage is 0% for all three parameters (start_date, end_date, next_token), so the description must compensate and does not. 'Daily' hints at a date-scoped query, but the description never explains the date format, inclusive/exclusive bounds, defaults, or what next_token is for.

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 states a specific verb and resource ('Get daily readiness scores') and adds the payload shape ('with contributor breakdown'), so an agent knows exactly what is returned. It does not, however, distinguish itself from the sibling get_daily_readiness_by_id, which is the obvious confusion point in this family.

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 guidance on when to use this tool versus get_daily_readiness_by_id or the other daily-metric tools. No prerequisites, no mention of when the returned data exists (e.g. after the ring has synced), and no exclusions.

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