Formula 1
liveSportsLive F1 driver standings, race results, schedules, and driver profiles via Ergast
Tools
get_current_standingsGet the current Formula 1 season driver championship standings. Returns position, points, wins, driver name, and constructor.
No parameters required.
Try it
get_race_resultsrequired: season, roundGet finishing results for a specific F1 race by season year and round number. Returns position, driver, constructor, status, and points.
seasonreqstringSeason year (e.g., "2025")roundreqstringRound number within the season (e.g., "1")Try it
get_schedulerequired: seasonGet the full race calendar/schedule for an F1 season. Returns round number, race name, circuit, location, and date for each round.
seasonreqstringSeason year (e.g., "2025")Try it
get_driverrequired: driverIdGet profile information for an F1 driver by their Ergast driver ID. Returns name, number, nationality, and date of birth.
driverIdreqstringErgast driver ID (e.g., "hamilton", "verstappen", "leclerc")Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/f1/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/f1/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_current_standings","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_current_standings", {});// Or ask in plain English:
const answer = await px.ask("live f1 driver standings, race results, schedules, and driver profiles via ergast");