get_aircraft
Pack: adsb · Endpoint: https://gateway.pipeworx.io/adsb/mcp
Track a specific aircraft by its 24-bit ICAO hex address (e.g. “a835af”). Returns the live ADS-B position (lat/lon, altitude, speed, heading) of that exact airframe if it is currently transmitting. Real-time position data, not schedules.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
hex | string | yes | 24-bit ICAO hex address, e.g. ‘a835af’. |
Example call
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":"get_aircraft","arguments":{}}}'
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.