Status: Live. Use the authenticated, read-only ADSBiq MCP server with strictly bounded aircraft tools.
Connect
Streamable HTTP endpoint: https://adsbiq.com/mcp
Send your feeder API key as Authorization: Bearer YOUR_API_KEY. The endpoint implements MCP 2025-06-18, returns stateless JSON responses, and intentionally declines standalone GET/SSE streams.
curl -sS https://adsbiq.com/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json, text/event-stream" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Bounded read-only tools
| Tool | Maximum result | Purpose |
|---|---|---|
get_aircraft | One aircraft | Current public state by six-character ICAO hex. |
nearby_aircraft | 50 aircraft, 250 nm | Geographically bounded live search. |
network_stats | Four aggregate values | Current aircraft, positioned-aircraft, and emergency counts. |
Limits and security
Tool execution is capped at 60 calls per authenticated feeder per minute. Request bodies are limited to 32 KiB. Unknown arguments, out-of-range coordinates, oversized radii, unsupported protocol versions, and untrusted browser origins are rejected. Feeder identity, receiver identity, RF details, and credentials are never returned.
Registry metadata and compatibility
Download server.json, validated against the official 2025-12-11 MCP Registry schema. Compatible clients must support Streamable HTTP and bearer headers.
Troubleshooting
401: the feeder token is missing or inactive.406: include both required response types inAccept.-32602: inspect tool arguments and documented bounds.-32002: wait for the next minute or retry after a transient rate-store outage.