Skip to main content
Glama
Branuvg

mcp_f1_strategy

by Branuvg

get_tire_degradation_curve

Retrieve a calibrated tire degradation curve for a compound and circuit, providing base pace and degradation rate derived from real lap data to support pit-stop strategy decisions.

Instructions

Calibrated tire degradation model (base pace + degradation rate) for a compound at a circuit, fit on real FastF1 lap data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seasonNo
circuitYes
compoundYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden and does add useful context by stating the model is calibrated and fit on real FastF1 lap data, and that it provides base pace and degradation rate. However, it does not disclose behavior around the optional season, data availability, or input constraints.

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 compact and information-dense, with no wasted words. It front-loads the main concept and supports it with the data-source detail, though a leading verb like 'Returns' would make it even easier to parse.

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?

An output schema exists, so return-value detail is not required. Still, the description leaves the season parameter's effect and the tool's relationship to sibling strategy tools implicit, making this adequate but not fully complete.

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 description adds meaning to compound and circuit by explaining they define the model scope. Schema coverage is 0%, so the description partially compensates, but the season parameter remains semantically undefined beyond being a nullable integer with a null default.

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 a calibrated tire degradation model as the resource, scoped by compound and circuit. It distinguishes this tool from sibling tools about pit loss, pit window, and strategy simulation by focusing on the degradation curve itself. It lacks an explicit verb, but the artifact and scope are unmistakable.

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 intended use is implied: retrieve a tire degradation model for strategy analysis. However, there is no explicit statement of when to use this tool instead of related siblings like get_historical_strategies or simulate_undercut_overcut, nor any exclusions.

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