airspace_activity

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

Summary of live flight activity over a named region — aircraft count, country-of-registration breakdown, average altitude, and airborne vs on-ground split. Built for “is this airspace still operating” questions (airspace closures, conflict zones, strait and corridor traffic). Keyless. Supported regions: Iran, Israel, Syria, Ukraine, Russia, Taiwan, North Korea, South China Sea, Yemen, Strait of Hormuz, Taiwan Strait, Red Sea, Saudi Arabia, Gulf of Aden, Lebanon.

Parameters

NameTypeRequiredDescription
regionstringyesRegion name, case-insensitive. For a custom area use opensky_get_states with lat/lon/radius_nm.

Example call

Arguments

{
  "region": "Ukraine"
}

curl

curl -X POST https://gateway.pipeworx.io/opensky/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"airspace_activity","arguments":{"region":"Ukraine"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('airspace_activity', {
  "region": "Ukraine"
});

More examples

{
  "region": "Taiwan Strait"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "opensky": {
      "url": "https://gateway.pipeworx.io/opensky/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 21, 2026