FlightStats (Cirium)
live TravelFlight status (gate/delay/baggage), airport departures/arrivals, and scheduled timetables. BYO key.
Tools
flightstats_flight_status Status of flight AA100 on a date — gate, delay, baggage. Returns operational status (scheduled vs estimated departure/arrival, gate, terminal, baggage claim) for one specific flight identified by carr
No parameters required.
Try it
flightstats_airport_status Departures/arrivals at an airport — a live board of flights leaving from or arriving at an airport on a given date/hour. Example: flightstats_airport_status({ airport: "JFK", type: "dep", year: 2026,
No parameters required.
Try it
flightstats_schedule Scheduled flight timetable — the published schedule (departure/arrival airports and times) for a carrier + flight number departing on a date, regardless of live operational status. Example: flightstat
No parameters required.
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/flightstats/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/flightstats/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"flightstats_flight_status","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("flightstats_flight_status", {}); // Or ask in plain English:
const answer = await px.ask("flight status (gate/delay/baggage), airport departures/arrivals, and scheduled timetables");