Skip to main content
Glama
trenerok

oura-mcp-server

by trenerok

get_sessions

Retrieve Oura Ring session data for meditation, breathing, and relaxation activities, including heart rate, HRV, and mood details.

Instructions

Get session data for activities like meditation, breathing exercises, and relaxation. Returns session details including heart rate, HRV, and mood data.

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. It discloses the returned data categories (heart rate, HRV, mood), which is useful, but says nothing about pagination despite a next_token parameter, nothing about default date ranges, result caps, or auth requirements.

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 no filler; the purpose is front-loaded and the return summary follows. Nothing is padded, though little is said.

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

Completeness3/5

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

There is no output schema and no annotations, so the description must supply context. It covers the resource and return fields reasonably, but is silent on pagination, filtering via start/end date, and scoping relative to the single-session sibling, leaving meaningful gaps for a query tool.

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 mentions none of the three parameters (start_date, end_date, next_token). An agent gets no format, default, or date-range semantics from either the schema or the prose.

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 and resource ('Get session data') and enumerates the activity types covered (meditation, breathing, relaxation), which is more than a restatement of the name. It does not, however, explicitly distinguish itself from the sibling get_session_by_id, leaving the plural/singular split to inference.

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 when-to-use guidance, no prerequisites, and no mention of the obvious alternative get_session_by_id for fetching a single session. The plural name implies a list, which is the only usage signal present.

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