get_meetings
Pack: openf1 · Endpoint: https://gateway.pipeworx.io/openf1/mcp
List Formula 1 meetings (Grand Prix weekends). Live race data source. Filter by year and/or country. Returns meeting_key, official name, country, circuit, location, date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | number | no | Season year, e.g. 2024. |
country_name | string | no | Host country, e.g. “Bahrain”, “Italy”. |
Example call
Arguments
{
"year": 2024
}
curl
curl -X POST https://gateway.pipeworx.io/openf1/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_meetings","arguments":{"year":2024}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_meetings', {
"year": 2024
});
More examples
{
"year": 2024,
"country_name": "Italy"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openf1": {
"url": "https://gateway.pipeworx.io/openf1/mcp"
}
}
}
See Getting Started for client-specific install steps.