routes

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

Scheduled routes between airports.

Parameters

NameTypeRequiredDescription
dep_iatastringno
arr_iatastringno
airline_iatastringno
flight_numberstringno
limitnumberno

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":"routes","arguments":{}}}'

Response shape

FieldTypeDescription
dataarrayArray of route objects
paginationobjectPagination metadata
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of route objects",
      "items": {
        "type": "object",
        "properties": {
          "departure_airport_iata": {
            "type": "string",
            "description": "Departure airport IATA"
          },
          "departure_airport_icao": {
            "type": "string",
            "description": "Departure airport ICAO"
          },
          "departure_airport_name": {
            "type": "string",
            "description": "Departure airport name"
          },
          "arrival_airport_iata": {
            "type": "string",
            "description": "Arrival airport IATA"
          },
          "arrival_airport_icao": {
            "type": "string",
            "description": "Arrival airport ICAO"
          },
          "arrival_airport_name": {
            "type": "string",
            "description": "Arrival airport name"
          },
          "airline_iata": {
            "type": "string",
            "description": "Airline IATA code"
          },
          "airline_icao": {
            "type": "string",
            "description": "Airline ICAO code"
          },
          "airline_name": {
            "type": "string",
            "description": "Airline name"
          },
          "flight_number": {
            "type": "string",
            "description": "Flight number"
          },
          "aircraft_type": {
            "type": "string",
            "description": "Aircraft type code"
          }
        }
      }
    },
    "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