get_event_info
Retrieve detailed Formula One Grand Prix event data by specifying the year and event name or round number using the MCP server interface.
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"
}