Skip to main content
Glama
trenerok

oura-mcp-server

by trenerok

get_daily_activity_by_id

Retrieve a single daily Oura activity record using its unique document ID to review activity metrics for a specific day.

Instructions

Get a single daily activity document by its unique ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
document_idYesThe unique document ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries full behavioral burden. It does not state that this is a read-only operation, nor does it mention authentication requirements, rate limits, error behavior (e.g., missing ID), or response format. The minimal text adds no behavioral context beyond the implied read.

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?

The description is a single, front-loaded sentence with zero wasted words. It efficiently conveys the tool's purpose and is appropriately sized for a simple getter.

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?

Given the tool's simplicity (1 required param, 100% schema coverage, no output schema, no annotations), the description is adequate but has clear gaps. It doesn't clarify that this is a safe read, what the return structure looks like, or how errors are handled, which are important when no annotations or output schema exist.

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

Parameters3/5

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

Schema description coverage is 100%, so the input schema already fully documents the single required parameter. The description adds no syntax, format, or validation details beyond what the schema provides, making the baseline 3 appropriate.

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 (Get), resource (daily activity document), and scope (single, by unique ID). It implicitly distinguishes from the sibling get_daily_activity (which likely returns a collection) by specifying 'single' and 'by its unique ID', but does not explicitly name the alternative.

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?

The description offers no guidance on when to use this tool versus alternatives like get_daily_activity, nor does it list prerequisites. It simply states what the tool does, leaving the agent to infer usage from the name and siblings.

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