Skip to main content
Glama

Predict race times

predict_race_time
Read-onlyIdempotent

Predict times across 5K / 10K / Half / Marathon from a known race result, using a distance-varying Riegel exponent (1.06 up to 10K, 1.07 to the half, 1.08 to the marathon) and age-graded performance scores against world records. Predictions are point estimates with no confidence interval — treat a marathon predicted from a short race as an optimistic ceiling. Source: ham.run race predictor. Pass useMyData:true to overlay age + sex from the connected athlete profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ageNoAge in years.
sexNoAthlete sex — used for age-graded scoring against world records.
knownTimeYesRace time, "HH:MM:SS" or "MM:SS".
useMyDataNoOverlay age + sex from the connected athlete profile.
knownDistanceMetersYesDistance in metres.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputYesEcho of resolved input parameters.
methodYesDescription of the prediction methodology.
predictionsYesPredictions for each standard race distance.

TDQS

A4.2/5.0
Behavior4/5

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

Beyond annotations (readOnly, idempotent), the description discloses that predictions are point estimates without confidence intervals and flags the optimistic ceiling for marathon-from-short-race predictions. It also reveals the underlying algorithm and the effect of useMyData, adding meaningful behavioral context.

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 compact and front-loaded with the core function, then adds algorithm details, limitations, source, and usage tip in a logical sequence. Every sentence adds unique value with no filler.

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?

Given the output schema and annotations, the description adequately covers the algorithm, limitations, and optional profile overlay. It lacks an explicit statement of when not to use the tool, but overall it is sufficiently complete for a read-only prediction utility.

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

Parameters3/5

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

The input schema already provides 100% parameter coverage, so the description does not need to repeat definitions. It adds a helpful hint about useMyData overlaying profile data and clarifies the distance scope, but the schema carries the primary semantic load.

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 tool predicts race times across 5K/10K/Half/Marathon from a known race result using a specific algorithm. This specific verb+resource combination distinguishes it from siblings like pacing_strategy or generate_training_plan.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It specifies the core use case: input a known race result to get predictions. It also provides a caution about interpreting marathon predictions from short races, implying when to be careful. However, it does not explicitly name alternative tools or scenarios where this tool should not be used.

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

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct aspect of endurance running performance: caffeine modeling, fueling, pacing, athlete data, activities, training load, heat acclimation, pacing strategy, periodization, race prediction, and running economy. No overlap.

Naming Consistency3/5

Names use snake_case but mix verb_noun (e.g., get_my_athlete, predict_race_time), noun_verb (periodization_compare), and pure noun (caffeine_protocol, fueling_plan). Inconsistent pattern but still understandable.

Tool Count5/5

11 tools cover the domain of running performance modeling without being too many or too few. Each tool serves a clear purpose within the server's scope.

Completeness4/5

Covers most core areas: personal data retrieval, activity history, training load, and multiple performance models. Minor gaps like workout creation or nutrition beyond fueling plan, but the surface is largely complete for modeling.

Resources