Skip to main content
Glama
jakub-m-arch

Intervals.icu MCP Server

by jakub-m-arch

Add gear

create_gear

Add gear such as running shoes or bikes, optionally with covered distance, to link with training activities.

Instructions

Add gear such as a new pair of running shoes, optionally with distance already covered. Activities are linked to gear by the device sync or manually in Intervals.icu.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
typeYes
notesNo
purchasedNo
starting_distance_kmNoDistance already covered.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
gearYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already mark this as a mutating, non-destructive operation. The description adds a useful behavioral note that activities are not tied to gear automatically by creation but rather through device sync or manual linking in Intervals.icu. It does not discuss duplicate handling, idempotency, or required permissions, but it does not contradict annotations either.

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 front-loaded: the first sentence says what the tool does and the second adds relevant linkage context. No filler, though the second sentence is arguably optional for simply invoking the tool.

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 definition is adequate for a simple create operation, especially with an output schema present, but it leaves gaps around parameter semantics and sibling-tool selection. It is not misleading, yet an agent would still need to infer name/notes/purchased behavior from the schema alone.

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

Parameters2/5

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

With schema description coverage at only 20%, the description needed to explain the other parameters. It only adds meaning for starting_distance_km ('distance already covered') and gives an example value for the type enum; name, notes, and purchased remain unexplained.

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 states a clear verb/resource pairing ('Add gear') and gives a concrete example ('a new pair of running shoes'), plus the optional starting-distance wrinkle. This is enough to distinguish creation from sibling update/list/reminder tools such as update_gear and add_gear_reminder.

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 explicit guidance on when to choose create_gear over its siblings. The second sentence explains that gear is linked via sync or manually, but it never states exclusions, prerequisites, or conditions that should route an agent to update_gear/list_gear/add_gear_reminder.

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