Skip to main content
Glama

Server Quality Checklist

75%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.3.3

  • Disambiguation5/5

    Each tool has a clear, non-overlapping role: health check, metadata reference, and data retrieval. An agent can easily decide which to use based on the task.

    Naming Consistency4/5

    All tools share the 'oura_' prefix and use lowercase with underscores. However, 'collections' is a noun while 'check' and 'query' are verbs, creating a slight inconsistency in the verb_noun pattern.

    Tool Count5/5

    With just three tools, the server is minimal but well-scoped for the Oura API's read-only nature. Each tool serves a distinct purpose without redundancy.

    Completeness5/5

    The query tool can fetch any of the 19 collections, while the collections tool provides the necessary metadata to use it correctly. The check tool covers diagnostics, forming a complete read-only surface.

  • Average 4.7/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 79 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • This repository includes a glama.json configuration file.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior5/5

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

    Annotations already declare readOnlyHint, idempotentHint, openWorldHint, and non-destructive. The description adds significant non-obvious behavior: it fully chases pagination while Oura's API doesn't, inclusive range correction differing from Oura's native behavior, collection-specific date formats, and the fact that personal_info/ring_configuration ignore ranges. This is exactly the kind of context that goes beyond annotations.

    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 three compact paragraphs with front-loaded core behavior, followed by edge cases and performance guidance. Every sentence carries value—the sample counts justify csv/fields advice, and the pagination warning is critical. No filler, well-structured.

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

    Completeness4/5

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

    With no output schema, the description should help the agent understand return behavior. It covers pagination, inclusiveness, date formats, collection-specific exceptions, and performance. It does not explicitly state the exact JSON envelope or error behavior, but it is otherwise thorough for a moderate-complexity query tool.

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

    Parameters4/5

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

    Schema descriptions cover all 7 parameters (100%), so the baseline is 3. The description adds meaningful semantics: equal start/end returns that day, heartrate uses ISO 8601 with time while others use YYYY-MM-DD, and example counts (1,231 samples/day) explain why fields and csv are useful. It does not just repeat the schema.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a specific verb and object: 'Fetches a COMPLETE Oura collection over the requested range.' It clearly identifies the resource (Oura collection) and differentiates from sibling tools like oura_collections (which lists available collections) by focusing on data retrieval with pagination handling.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides substantial usage context: when to use csv format for large volumes, when to use the fields parameter for long heartrate ranges, and when latest applies. It also warns about date-format differences and inclusive range semantics. However, it does not explicitly contrast with sibling tools beyond 'see oura_collections if unsure,' lacking explicit when-not-to-use alternatives.

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

  • Behavior5/5

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

    The description adds crucial safety context beyond the annotations: 'Exposing nothing', 'Returns neither the token nor any health value', and 'It reports the token's LENGTH, never the token'. It also explains the rationale (diagnostic messages may be copied), which is not present in the readOnlyHint/idempotentHint annotations.

    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 compact, with the first sentence stating the core purpose and the second paragraph providing essential security context. Every sentence adds value, and the structure is front-loaded and easy to parse.

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

    Completeness5/5

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

    For a zero-parameter diagnostic tool with rich annotations and no output schema, the description fully covers behavioral expectations: what it checks, what it returns (token length), what it never returns, and why. There are no gaps that could lead to misuse.

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

    Parameters4/5

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

    The tool has zero parameters, and the schema is empty (100% coverage). Per baseline for 0 params, the description doesn't need to explain parameter semantics, and the description adds appropriate context about what it does with the token.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the purpose: 'is there a credential, and does Oura respond?' It identifies a specific diagnostic resource (the Oura connection) and distinguishes itself from sibling tools (oura_collections, oura_query) by focusing on connectivity/credential checking rather than data retrieval.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The term 'Self-check' implies usage when you need to verify the connection or diagnose issues, providing clear context. It doesn't explicitly name alternatives or exclusions, but since this is a unique diagnostic tool with no overlapping siblings, explicit when-not-to-use guidance isn't necessary.

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

  • Behavior4/5

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

    Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds meaningful context by specifying the content (19 collections, their contents, and parameters) and the intended purpose as a lookup reference. It does not contradict annotations, though it doesn't detail return format or structure, which is acceptable given the simple read-only nature.

    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 concise sentences: the first establishes the tool's content, the second provides usage guidance. Every word adds value, and the structure is front-loaded with the primary purpose.

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

    Completeness5/5

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

    For a zero-parameter, read-only catalog with no output schema, the description is sufficiently complete. It states what the tool contains, how many collections, and when to use it. No additional behavioral or return-detail is necessary for the agent to select and invoke it correctly.

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

    Parameters4/5

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

    The tool has zero parameters, and the schema coverage is trivially 100%. The description references parameters taken by collections, which is content detail rather than tool parameter semantics. With no parameters to document, the baseline of 4 is appropriate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states that this tool provides a catalog of the 19 Oura collections, what each carries, and which parameters it takes. It uses a specific verb ('catalog') and resource ('Oura collections'), distinguishing it from the sibling tools 'oura_query' and 'oura_check'.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Explicitly advises using this tool 'before oura_query if you are unsure of the exact name', giving an actionable use case and a direct reference to the sibling tool. This provides clear guidance on when to consult the catalog versus querying directly.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

oura-mcp MCP server

Copy to your README.md:

Score Badge

oura-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/proscar87/oura-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server