MCP server exposing 3 tools for flightstats.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/flightstats/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
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 carrier IATA code + flight number + date. Example: flightstats_flight_status({ carrier: "AA", flight: "100", year: 2026, month: 7, day: 2, _apiKey: "appId:appKey" })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, month: 7, day: 2, hour: 14, _apiKey: "appId:appKey" })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: flightstats_schedule({ carrier: "AA", flight: "100", year: 2026, month: 7, day: 2, _apiKey: "appId:appKey" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/flightstats/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io