flightstats_schedule
Pack: flightstats · Endpoint: https://gateway.pipeworx.io/flightstats/mcp
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” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
carrier | string | yes | Airline IATA code, e.g. “AA”, “DL”, “BA” |
flight | string | yes | Flight number (digits only), e.g. “100” |
year | integer | yes | Departure year, e.g. 2026 |
month | integer | yes | Departure month 1-12 |
day | integer | yes | Departure day of month 1-31 |
_apiKey | string | yes | FlightStats/Cirium credentials as “appId:appKey” (developer.cirium.com; free eval = 20,000 lifetime calls) |
Example call
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_schedule","arguments":{}}}'
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.