airports
Pack: aviationstack · Endpoint: https://gateway.pipeworx.io/aviationstack/mcp
Airport directory — name, IATA/ICAO codes, country, GPS, timezone.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | Free-text — name / city |
iata_code | string | no | 3-letter IATA code |
icao_code | string | no | 4-letter ICAO code |
country_iso2 | string | no | ISO 3166-1 alpha-2 country |
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":"airports","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
data | array | Array of airport objects |
pagination | object | Pagination metadata |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "Array of airport objects",
"items": {
"type": "object",
"properties": {
"airport_name": {
"type": "string",
"description": "Full airport name"
},
"iata_code": {
"type": "string",
"description": "3-letter IATA code"
},
"icao_code": {
"type": "string",
"description": "4-letter ICAO code"
},
"city_iata_code": {
"type": "string",
"description": "City IATA code"
},
"city_name": {
"type": "string",
"description": "City name"
},
"country_iso2": {
"type": "string",
"description": "ISO 3166-1 alpha-2 country code"
},
"country_name": {
"type": "string",
"description": "Country name"
},
"timezone": {
"type": "string",
"description": "IANA timezone"
},
"gmt": {
"type": "string",
"description": "GMT offset"
},
"gmt_offset_seconds": {
"type": "number",
"description": "GMT offset in seconds"
},
"latitude": {
"type": "number",
"description": "Latitude coordinate"
},
"longitude": {
"type": "number",
"description": "Longitude coordinate"
}
}
}
},
"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.