get_event_schedule
Fetch the Formula One race calendar for a specific season by providing the year. Access event schedules, race dates, and locations directly through the Formula One MCP Server.
Instructions
Get Formula One race calendar for a specific season
Input Schema
Name | Required | Description | Default |
---|---|---|---|
year | Yes | Season year (e.g., 2023) |
Input Schema (JSON Schema)
{
"properties": {
"year": {
"description": "Season year (e.g., 2023)",
"type": "number"
}
},
"required": [
"year"
],
"type": "object"
}