airlines

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

Airline directory.

Parameters

NameTypeRequiredDescription
searchstringno
iata_codestringno2-letter IATA
icao_codestringno3-letter ICAO
limitnumberno
offsetnumberno

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

FieldTypeDescription
dataarrayArray of airline objects
paginationobjectPagination 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.

Regenerated from source · build May 21, 2026