Skip to main content
Glama
Packi1992

CalisthenicsCompanion-MCP

by Packi1992

Get Planned Workouts

get_planned_workouts
Read-only

Retrieve planned workouts for a date range, with cancellations excluded and recurring series details provided for each occurrence.

Instructions

Return concrete calendar occurrences and their planned-workout roots for a required date window (from/to, YYYY-MM-DD, both mandatory, span at most 366 days). Cancelled occurrences (deletedOccurrences) are already excluded. Completed occurrences are NOT excluded — a past date alone is not evidence of a missed workout. Each root also carries structured series fields (freq, interval, byDay, until, weekOffset) alongside the raw recurrenceRule, so a series can be described ("every 2 days", "every other week on Monday and Friday") without parsing the RRULE string.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYes
fromYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already mark the tool as read-only. The description adds meaningful behavioral details beyond that: cancelled occurrences are pre-filtered, completed occurrences are intentionally not excluded, and roots expose parsed series fields. This helps an agent interpret results correctly.

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 a bit long but each sentence earns its place: core purpose, date constraints, cancellation/completion semantics, and structured fields. It is front-loaded with the main verb and resource, and the extra detail is necessary for correct use.

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?

For a simple read-only tool with two parameters and no output schema, the description explains the return concept (occurrences and roots) and the key behavioral nuances. It does not enumerate exact occurrence fields, but the depth provided is appropriate for the tool's complexity.

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 coverage is 0%, so the description must compensate. It explicitly states `from` and `to` are mandatory dates in YYYY-MM-DD format with a maximum span of 366 days, adding meaning beyond the raw schema pattern and required list.

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 tool returns calendar occurrences and their planned-workout roots for a date window. It is specific about the resource and output, though it does not explicitly name sibling tools to differentiate; still, the resource ('planned workouts') is distinct from `get_history` or `get_adherence`.

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 gives concrete invocation constraints (mandatory `from`/`to`, max 366 days, cancelled excluded) and clarifies that completed occurrences are included. However, it never says when to use this tool versus alternatives like `get_history` or `get_training_state`, leaving the choice to inference.

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