Skip to main content
Glama
trenerok

oura-mcp-server

by trenerok

get_sleep_time_by_id

Retrieves a single sleep time document by unique document ID from Oura Ring data, helping AI assistants fetch specific sleep session details.

Instructions

Get a single sleep time 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 the full behavioral burden. It implies a read-only retrieval but omits permissions, error behavior, return format, and whether the operation has side effects.

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?

One short sentence with no filler, front-loading the verb and resource. Every word earns its place.

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?

Adequate for a simple get-by-ID tool, but it does not differentiate from similar siblings or describe the returned document. With no output schema and no annotations, more context would help an agent avoid confusion.

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% for the single required parameter, so baseline is 3. The description adds no syntax, format, or validation details beyond what the schema already provides.

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 'sleep time document' with scope 'single ... by its unique ID'. This distinguishes it from list-style siblings like get_sleep_time, but it does not explicitly name alternatives or clarify how it differs from get_sleep_by_id or get_daily_sleep_by_id.

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 alternatives are mentioned. The need for an ID is implied by the schema, but the description itself provides no routing context.

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