airlines
Pack: aviationstack · Endpoint: https://gateway.pipeworx.io/aviationstack/mcp
Airline directory.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | |
iata_code | string | no | 2-letter IATA |
icao_code | string | no | 3-letter ICAO |
limit | number | no | |
offset | number | no |
Example call
curl -X POST https://gateway.pipeworx.io/aviationstack/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"airlines","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
data | array | Array of airline objects |
pagination | object | Pagination metadata |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "Array of airline objects",
"items": {
"type": "object",
"properties": {
"airline_name": {
"type": "string",
"description": "Airline name"
},
"iata_code": {
"type": "string",
"description": "2-letter IATA code"
},
"icao_code": {
"type": "string",
"description": "3-letter ICAO code"
},
"country_iso2": {
"type": "string",
"description": "Country ISO code"
},
"country_name": {
"type": "string",
"description": "Country name"
},
"type": {
"type": "string",
"description": "Airline type (e.g., scheduled, charter)"
},
"fleet_average_age": {
"type": [
"number",
"null"
],
"description": "Average aircraft age"
},
"airline_url": {
"type": [
"string",
"null"
],
"description": "Airline website URL"
}
}
}
},
"pagination": {
"type": "object",
"description": "Pagination metadata",
"properties": {
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"count": {
"type": "number"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"aviationstack": {
"url": "https://gateway.pipeworx.io/aviationstack/mcp"
}
}
}
See Getting Started for client-specific install steps.