Skip to main content
Glama

Get the active program

get_program

The athlete's current multi-day program (render-ready).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

C2.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 burden of behavioral disclosure. It only says "render-ready" which is ambiguous and does not state whether the tool is read-only, what it returns, or any side effects. The description does not reveal if the program is cached, if it errors when no program exists, or how the output should be consumed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short fragment, which is concise in length, but it under-specifies. It does add the 'render-ready' detail beyond the title, but it is not a well-formed sentence and reads more like a label than an explanation. It is not as degenerate as 'Process', but it is still minimal.

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?

Given the tool's simplicity (zero parameters, no output schema), the description could be sufficient if it clearly explained the return value. It says "current multi-day program (render-ready)" which gives some sense that the output is a program object formatted for display. However, it does not explain what 'render-ready' means, what the structure is, or any edge cases. For a simple getter, this is adequate but not complete.

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 input schema has zero parameters, so schema_description_coverage is trivially 100%. There are no parameters to explain, and the description adds no parameter-related meaning. With 0 params, a baseline score of 4 is appropriate; there is nothing for the description to compensate for.

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

Purpose3/5

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

The description is a noun phrase: "The athlete's current multi-day program (render-ready)." It lacks an explicit verb like 'fetch' or 'list', though the name and title imply retrieval. It does add the scope 'multi-day' and the 'render-ready' qualifier, which distinguishes it somewhat from 'get_todays_session', but the purpose is still vague without a direct statement of action.

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?

There is no guidance on when to use this tool versus alternatives. The sibling tools include get_todays_session and regenerate_program, and the description does not mention any context such as 'Use this to retrieve the full program for rendering' or 'For today's session, use get_todays_session'. The lack of usage context leaves the agent to guess.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct action or resource: program retrieval, session guidance, workout logging, readiness check-in, exercise swaps, nutrition targets, and meal planning. Even the closely related list_swap_options and swap_exercise have clear separation (viewing alternatives vs. applying a change). No two tools could be reasonably confused.

Naming Consistency4/5

Tool names are predominantly snake_case with a verb_noun pattern (get_program, list_swap_options, log_workout, regenerate_program, swap_exercise). However, a few are plain nouns (changelog, meal_plan, nutrition_targets) and readiness_checkin is a noun phrase, breaking the strict verb-first convention. This is a minor deviation that does not hinder readability.

Tool Count5/5

With 10 tools, the server is well-scoped for a fitness coaching domain. Every tool addresses an essential aspect of the coaching loop: program viewing, daily session delivery, workout logging, readiness tracking, nutrition guidance, exercise modification, and explanation of changes. The count is within the ideal range and none feel redundant.

Completeness4/5

The tool surface covers the core lifecycle: get program, regenerate program, view today's session, log workout, check in readiness, swap exercises, and access nutrition targets and meal plans. Notable gaps include no explicit workout history/retrospective tool and no direct profile management, but these are likely handled externally or can be worked around. The inclusion of a changelog nicely closes the feedback loop.

Resources