Formula 1

live Sports

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

4 tools
0ms auth
free tier 50 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_results required: season, round

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

Parameters
Name Type Description
season req string Season year (e.g., "2025")
round req string Round number within the season (e.g., "1")
Try it
get_schedule required: season

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

Parameters
Name Type Description
season req string Season year (e.g., "2025")
Try it
get_driver required: driverId

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

Parameters
Name Type Description
driverId req string Ergast 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":{}}}'