Skip to main content
Glama

f1_get_sessions

Read-onlyIdempotent

Retrieve Formula 1 sessions for a championship year, with optional country filter to view race weekends in a specific location.

Instructions

Return F1 sessions for a given year, optionally filtered by country.

Args: year: Championship year (e.g. 2025). country: Optional country name to filter (e.g. "Monaco").

Returns: data.sessions: list of session objects with session_key, session_type, date. meta.source: adapter that served the data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearYesChampionship year (e.g. 2025).
countryNoOptional country name to filter (e.g. "Monaco").

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
errorNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering the safety profile. The description adds return structure (session_key, session_type, date) and meta.source, but does not disclose additional behavioral details like ordering, timezone handling, or edge cases.

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 a one-sentence summary, followed by clear Args and Returns sections. Every element carries useful information, with no fluff or redundancy.

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?

For a simple two-parameter read-only tool with an output schema and safety annotations, the description covers the essential contract. It could mention whether the country filter is exact or partial and whether sessions are sorted, but nothing critical blocks correct invocation.

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 fully documents both parameters with descriptions and examples ('2025', 'Monaco'). The description repeats this information without adding extra meaning such as exact-match semantics, required formats, or allowed value ranges.

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?

Description states a specific verb and resource: 'Return F1 sessions for a given year, optionally filtered by country.' The resource is unique among siblings (no other sessions tool), so it is clearly distinguishable from f1_get_drivers, f1_get_race_results, and similar tools.

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 description gives clear scope (year, optional country) but no explicit guidance on when to use this tool versus alternatives or when not to use it. Usage is implied by the tool name and resource rather than stated as a recommendation.

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