military_aircraft
Pack: adsb · Endpoint: https://gateway.pipeworx.io/adsb/mcp
Live military and government aircraft currently being tracked worldwide via ADS-B. Returns real-time positions (lat/lon, altitude, speed, heading) for military/government airframes transmitting right now.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/adsb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"military_aircraft","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('military_aircraft', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"adsb": {
"url": "https://gateway.pipeworx.io/adsb/mcp"
}
}
}
See Getting Started for client-specific install steps.