Skip to main content
Glama
wilkar

Sports Tracker MCP Server

by wilkar

Get Vo2 Max History

get_vo2_max_history

Retrieve VO2Max and fitness age history from recent workouts to track changes in aerobic capacity over time.

Instructions

Get VO2Max and fitness age history extracted from recent workouts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
recordsYesChronological VO2Max records
latest_vo2_maxNoMost recent VO2Max
average_vo2_maxNoAverage VO2Max over recorded period
latest_fitness_ageNoMost recent estimated fitness age

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It does add useful context by stating the history is 'extracted from recent workouts,' implying derived/aggregated data. However, it does not mention ordering, time range, limit behavior, or that this is a safe read-only operation.

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 is a single, focused sentence with no wasted words. It front-loads the core action and resource, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and has an output schema, but the description lacks usage guidance and parameter semantics. An agent would not know when to choose this over sibling tools or what 'limit' controls, leaving important gaps for correct invocation.

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?

Schema description coverage is 0%, and the description does not explain the 'limit' parameter at all. The parameter name and default of 20 are somewhat self-explanatory, but the tool definition provides no explicit semantics for how the limit is applied.

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 identifies the resource (VO2Max and fitness age history) and the action (get), and notes the data source (recent workouts). It is specific enough to distinguish from siblings like get_recent_workouts, though it does not explicitly name alternatives or boundary conditions.

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 guidance is provided on when to use this tool versus alternatives such as get_training_summary or get_recent_workouts. The intended use is only implied by the name and description, with no exclusions or conditional routing.

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