Skip to main content
Glama
Surya96t

fastf1-mcp-server

get_qualifying_breakdown

Retrieve qualifying session results split by Q1, Q2, and Q3 phases with elimination details for Formula 1 events from 2018 onward.

Instructions

Get qualifying results split by Q1/Q2/Q3.

Data source: FastF1 Live Timing Coverage: 2018-present

Args: year: Season year (2018+) event: Race name or round number

Returns: { "Q1": [{"driver": "VER", "bestTime": "1:10.123", "lapNumber": 3}, ...], "Q2": [...], "Q3": [...], "eliminated_Q1": ["driver1", "driver2", ...], "eliminated_Q2": ["driver3", "driver4", ...] }

Example: get_qualifying_breakdown(2024, "Monaco") → { "Q1": [...20 drivers sorted by best time...], "Q2": [...15 drivers...], "Q3": [...10 drivers...], "eliminated_Q1": ["5 driver codes"], "eliminated_Q2": ["5 driver codes"] }

Note: Uses laps.split_qualifying_sessions() to split by session time. Drivers with no recorded lap time in a segment are omitted from that segment's list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearYes
eventYes

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 adds valuable behavioral context beyond the input schema. It discloses data source (FastF1 Live Timing), coverage (2018-present), how results are split (using laps.split_qualifying_sessions()), and handling of missing data (drivers with no recorded lap time are omitted). It also describes the return structure in detail, including eliminated drivers, which is helpful for understanding output behavior.

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 well-structured and front-loaded with the core purpose, followed by data source, parameters, returns, example, and notes. Every sentence adds value: the example illustrates usage, and the note explains implementation details and edge cases. No redundant or vague information is present.

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 moderate complexity (2 parameters, no annotations, but with output schema), the description is complete. It covers purpose, parameters, return values (though output schema exists, the description usefully elaborates), data constraints, and behavioral nuances. The example and note provide practical guidance, making it self-sufficient for an agent to use correctly.

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?

Schema description coverage is 0%, so the description must compensate fully. It explicitly documents both parameters: 'year: Season year (2018+)' and 'event: Race name or round number', including constraints and format options. The example further clarifies usage with concrete values (2024, 'Monaco'), adding significant meaning beyond the bare schema.

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 explicitly states the tool's purpose: 'Get qualifying results split by Q1/Q2/Q3.' It specifies the verb ('Get'), resource ('qualifying results'), and scope ('split by Q1/Q2/Q3'), distinguishing it from siblings like get_session_results or get_fastest_laps by focusing on qualifying breakdowns. The data source (FastF1 Live Timing) and coverage (2018-present) further clarify its domain.

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 for when to use this tool: for qualifying data from 2018 onward, using year and event parameters. It does not explicitly state when not to use it or name alternatives among siblings, but the specificity of 'qualifying results split by Q1/Q2/Q3' implies it's for qualifying sessions, not general race results or other data types.

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