Skip to main content
Glama
Surya96t

fastf1-mcp-server

get_lap_telemetry

Retrieve telemetry data for specific Formula 1 laps to analyze driver performance, including speed, throttle, brake, gear, and DRS information from 2018 onward.

Instructions

Get telemetry data for a specific lap.

Data source: FastF1 Live Timing Coverage: 2018-present

Args: year: Season year (2018+) event: Race name or round number session: Session type (R, Q, S, FP1, FP2, FP3) driver: Driver code (e.g., "VER") lap: Lap number or "fastest" (default) sample_size: Number of telemetry points to return (default 200, max 500)

Returns: { "driver": "VER", "lapNumber": 42, "lapTime": "0:01:23.456", "data": [ {"distance": 0.0, "speed": 280.0, "throttle": 95.0, "brake": false, "gear": 7, "drs": 0}, ... ] }

Example: get_lap_telemetry(2024, "Monaco", "Q", "VER") → fastest Q lap telemetry get_lap_telemetry(2024, "Monaco", "R", "VER", lap=45) → lap 45 telemetry

Note: Raw telemetry has 5000+ points per lap. Response is sampled to sample_size evenly-spaced distance points (capped at 500).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearYes
eventYes
sessionYes
driverYes
lapNofastest
sample_sizeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

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

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: data source (FastF1 Live Timing), coverage (2018-present), sampling behavior (raw telemetry has 5000+ points, response is sampled to sample_size), and caps (max 500 points). It doesn't mention rate limits or authentication requirements.

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?

Perfectly structured with clear sections (description, args, returns, example, note), zero wasted sentences, and front-loaded purpose. Every sentence adds value, from data source details to sampling behavior explanation.

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

Completeness5/5

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

Given the tool's complexity (6 parameters, telemetry data), no annotations, and 0% schema coverage, the description is remarkably complete. It explains parameters thoroughly, provides return format details (though output schema exists), includes practical examples, and discloses important behavioral constraints like data sampling.

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

Parameters5/5

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

With 0% schema description coverage, the description fully compensates by providing detailed parameter semantics: year range (2018+), event formats (race name or round number), session type examples (R, Q, S, FP1, etc.), driver code format, lap options (number or 'fastest'), and sample_size details (default 200, max 500).

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 specific action ('Get telemetry data') and resource ('for a specific lap'), with data source and coverage details. It distinguishes this tool from siblings like 'get_lap_times' or 'get_fastest_laps' by focusing on telemetry rather than timing results.

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?

The description provides clear context about when to use this tool through the examples and notes about data sampling. However, it doesn't explicitly mention when NOT to use it or name alternatives like 'compare_telemetry' for comparative analysis.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Surya96t/fastf1-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server