get_event_info
Retrieve detailed information about a specific Formula One Grand Prix, including event data, by specifying the season year and event name or round number using this Python-based MCP tool.
Instructions
Get detailed information about a specific Formula One Grand Prix
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | Event name or round number (e.g., 'Monaco' or '7') | |
year | Yes | Season year (e.g., 2023) |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"description": "Event name or round number (e.g., 'Monaco' or '7')",
"type": "string"
},
"year": {
"description": "Season year (e.g., 2023)",
"type": "number"
}
},
"required": [
"year",
"identifier"
],
"type": "object"
}