Skip to main content
Glama
csikosaron98

Intervals.icu MCP Server

by csikosaron98

get_activity_messages

Fetch notes and comments attached to a specific activity from Intervals.icu using its activity ID, so you can review athlete feedback without manual lookup.

Instructions

Get messages (notes/comments) for a specific activity from Intervals.icu

Args: activity_id: The Intervals.icu activity ID api_key: The Intervals.icu API key (optional, will use API_KEY from .env if not provided)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
api_keyNo
activity_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the transparency burden. It conveys a read-only 'Get' operation and explains API key fallback behavior, which is useful. However, it does not disclose error behavior, rate limits, or what happens if the activity_id is invalid.

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?

The description is concise and well-structured, with a clear first sentence followed by an Args list. Minor redundancy like repeating 'Intervals.icu' in both the summary and arg explanations does not significantly harm readability.

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?

Given the low parameter count, no nested objects, and the presence of an output schema, the description covers the essential invocation details: required ID and auth handling. It lacks explicit alternative routing and error-condition context, but is otherwise sufficient for a simple read tool.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate, and it does. It explains that activity_id is the Intervals.icu activity ID and that api_key is optional, falling back to API_KEY from .env. This adds meaningful semantic context beyond the bare schema.

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 clearly states the verb 'Get' and the resource 'messages (notes/comments) for a specific activity.' It effectively differentiates from siblings like get_activity_details or get_activity_raw by specifying the message resource, though it does not explicitly name alternative tools.

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

Usage Guidelines3/5

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

The description implies when to use the tool: when you need messages/comments for a specific activity. However, it provides no explicit guidance on when not to use it or which sibling alternatives (e.g., add_activity_message, get_activity_details) would be more appropriate for related needs.

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