get_flight_route
Pack: flights · Endpoint: https://gateway.pipeworx.io/flights/mcp
Resolve a flight callsign / flight number (e.g. “UAL1”, “BAW117”) to its airline and scheduled ROUTE — origin and destination airports with names, IATA/ICAO codes, and coordinates. No key required. Use for “where does flight X fly from/to”, “what route is
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
callsign | string | yes | Flight callsign, ICAO or IATA form (e.g. “UAL1”, “UA1”, “BAW117”) |
Example call
Arguments
{
"callsign": "UAL1"
}
curl
curl -X POST https://gateway.pipeworx.io/flights/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_flight_route","arguments":{"callsign":"UAL1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_flight_route', {
"callsign": "UAL1"
});
More examples
{
"callsign": "BAW117"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"flights": {
"url": "https://gateway.pipeworx.io/flights/mcp"
}
}
}
See Getting Started for client-specific install steps.