flightstats_flight_status

Pack: flightstats · Endpoint: https://gateway.pipeworx.io/flightstats/mcp

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” })

Parameters

NameTypeRequiredDescription
carrierstringyesAirline IATA code, e.g. “AA”, “DL”, “BA”
flightstringyesFlight number (digits only), e.g. “100”
yearintegeryesDeparture year, e.g. 2026
monthintegeryesDeparture month 1-12
dayintegeryesDeparture day of month 1-31
_apiKeystringyesFlightStats/Cirium credentials as “appId:appKey” (developer.cirium.com; free eval = 20,000 lifetime calls)

Example call

Arguments

{
  "carrier": "AA",
  "flight": "100",
  "year": 2026,
  "month": 7,
  "day": 2,
  "_apiKey": "your-flightstats-appId:your-flightstats-appKey"
}

curl

curl -X POST https://gateway.pipeworx.io/flightstats/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"flightstats_flight_status","arguments":{"carrier":"AA","flight":"100","year":2026,"month":7,"day":2,"_apiKey":"your-flightstats-appId:your-flightstats-appKey"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('flightstats_flight_status', {
  "carrier": "AA",
  "flight": "100",
  "year": 2026,
  "month": 7,
  "day": 2,
  "_apiKey": "your-flightstats-appId:your-flightstats-appKey"
});

More examples

{
  "carrier": "DL",
  "flight": "450",
  "year": 2026,
  "month": 12,
  "day": 25,
  "_apiKey": "your-flightstats-appId:your-flightstats-appKey"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "flightstats": {
      "url": "https://gateway.pipeworx.io/flightstats/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026