airports

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

Airport directory — name, IATA/ICAO codes, country, GPS, timezone.

Parameters

NameTypeRequiredDescription
searchstringnoFree-text — name / city
iata_codestringno3-letter IATA code
icao_codestringno4-letter ICAO code
country_iso2stringnoISO 3166-1 alpha-2 country
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":"airports","arguments":{}}}'

Response shape

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

Regenerated from source · build May 21, 2026