Formula 1

liveSports

Live F1 driver standings, race results, schedules, and driver profiles via Ergast

4tools
0msauth
free tier50 calls/day

Tools

get_current_standings

Get 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, round

Get finishing results for a specific F1 race by season year and round number. Returns position, driver, constructor, status, and points.

Parameters
NameTypeDescription
seasonreqstringSeason year (e.g., "2025")
roundreqstringRound number within the season (e.g., "1")
Try it
get_schedulerequired: season

Get the full race calendar/schedule for an F1 season. Returns round number, race name, circuit, location, and date for each round.

Parameters
NameTypeDescription
seasonreqstringSeason year (e.g., "2025")
Try it
get_driverrequired: driverId

Get profile information for an F1 driver by their Ergast driver ID. Returns name, number, nationality, and date of birth.

Parameters
NameTypeDescription
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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/f1/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_current_standings", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("live f1 driver standings, race results, schedules, and driver profiles via ergast");