Skip to main content
Glama
csikosaron98

Intervals.icu MCP Server

by csikosaron98

add_or_update_note

Create or update a plain text note on the Intervals.icu calendar. Provide a title and description, with optional date, color, athlete ID, or event ID to update an existing note.

Instructions

Add or update a plain text note (category NOTE) on the Intervals.icu calendar.

Args: name: Title of the note description: Plain text content of the note start_date: Date in YYYY-MM-DD format (optional, defaults to today) color: Color of the note (e.g. green, orange, red, blue) athlete_id: The Intervals.icu athlete ID (optional) api_key: The Intervals.icu API key (optional) event_id: The Intervals.icu event ID (optional, for updates)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
colorNogreen
api_keyNo
event_idNo
athlete_idNo
start_dateNo
descriptionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/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 disclosure burden. It says 'Add or update' and notes that event_id is for updates, but does not explain mutation side effects, auth requirements, whether an update without event_id creates a duplicate or errors, or how existing data is affected. This is a material gap for a write-capable tool with no annotation coverage.

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 opens with one clear purpose sentence and then uses a compact argument list with no redundant prose. Each line adds information not inferable from the parameter name alone, and the format is scannable for an agent.

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?

The description plus output schema covers parameter invocation fairly well, but for a mutation tool with no annotations it leaves gaps around update-versus-create behavior, required auth context, and possible failure modes. The event_id update hint is useful, but an agent still lacks enough context to know what happens when adding a note that already exists or updating with a missing/invalid event_id.

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?

The input schema has 0% description coverage, so the description must compensate, and it does. Every parameter gets a meaningful natural-language explanation: name and description semantics, start_date format and default, color examples, athlete_id/api_key optionality, and event_id's role in updates. This gives an agent enough to correctly populate arguments.

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 action ('Add or update') and the resource ('a plain text note (category NOTE) on the Intervals.icu calendar'), using a specific verb and target. It distinguishes itself from sibling tools like add_or_update_event by noting the note category explicitly.

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 usage for notes via 'plain text note (category NOTE)' and gives update guidance through 'event_id: optional, for updates', but it never explicitly states when to prefer this tool over add_or_update_event or other note/event tools. Usage context is present but not fully developed, and no exclusions or alternatives are named.

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