get_current_standings
Pack: f1 · Endpoint: https://gateway.pipeworx.io/f1/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_current_standings for the schema, then POST the same URL with its arguments for the data.
Check current F1 driver championship standings. Returns position, points, wins, driver name, and constructor for all drivers.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/f1/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_current_standings","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_current_standings', {});
Response shape
Always returns: season, round, standings
| Field | Type | Description |
|---|---|---|
season | string | null | F1 season year |
round | integer | null | Current round number |
standings | array | List of driver standings |
Full JSON Schema
{
"type": "object",
"properties": {
"season": {
"type": [
"string",
"null"
],
"description": "F1 season year"
},
"round": {
"type": [
"integer",
"null"
],
"description": "Current round number"
},
"standings": {
"type": "array",
"description": "List of driver standings",
"items": {
"type": "object",
"properties": {
"position": {
"type": "integer",
"description": "Championship position"
},
"points": {
"type": "number",
"description": "Championship points"
},
"wins": {
"type": "integer",
"description": "Number of race wins"
},
"driver_id": {
"type": "string",
"description": "Ergast driver ID"
},
"number": {
"type": [
"string",
"null"
],
"description": "Driver car number"
},
"code": {
"type": [
"string",
"null"
],
"description": "Three-letter driver code"
},
"name": {
"type": "string",
"description": "Full driver name"
},
"nationality": {
"type": [
"string",
"null"
],
"description": "Driver nationality"
},
"constructor": {
"type": [
"string",
"null"
],
"description": "Current constructor name"
}
},
"required": [
"position",
"points",
"wins",
"driver_id",
"number",
"code",
"name",
"nationality",
"constructor"
]
}
}
},
"required": [
"season",
"round",
"standings"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"f1": {
"url": "https://gateway.pipeworx.io/f1/mcp"
}
}
}
See Getting Started for client-specific install steps.