flightstats_airport_status

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

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

Parameters

NameTypeRequiredDescription
airportstringyesAirport IATA code, e.g. “JFK”, “LHR”, “SFO”
typestringnoBoard type: “dep” for departures (default), “arr” for arrivals
yearintegeryesYear, e.g. 2026
monthintegeryesMonth 1-12
dayintegeryesDay of month 1-31
hourintegernoLocal hour 0-23 (optional, default 0)
_apiKeystringyesFlightStats/Cirium credentials as “appId:appKey” (developer.cirium.com; free eval = 20,000 lifetime calls)

Example call

Arguments

{
  "airport": "JFK",
  "year": 2026,
  "month": 7,
  "day": 2,
  "type": "dep",
  "hour": 14,
  "_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_airport_status","arguments":{"airport":"JFK","year":2026,"month":7,"day":2,"type":"dep","hour":14,"_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_airport_status', {
  "airport": "JFK",
  "year": 2026,
  "month": 7,
  "day": 2,
  "type": "dep",
  "hour": 14,
  "_apiKey": "your-flightstats-appId:your-flightstats-appKey"
});

More examples

{
  "airport": "LHR",
  "year": 2026,
  "month": 3,
  "day": 15,
  "_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 19, 2026