# adsbiq [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/Sky-Power-Services/adsbiq-mcp-server  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/adsbiq

## Description
Read-only access to live ADSBiq aircraft and network state, with community contribution metadata.

## Claude Desktop Quick Installation
Remote MCP endpoint (confidence: high). Install path detected from listing signals. Add as a URL/SSE server in your client:

```json
"mcpServers": {
  "adsbiq": {
    "url": "https://adsbiq.com/mcp"
  }
}
```

## Documentation & README

# ADSBiq MCP Server

Official bounded, read-only Model Context Protocol access to live ADSBiq aircraft data.

- Remote Streamable HTTP: `https://adsbiq.com/mcp`
- Local stdio bridge: `python adsbiq_mcp.py`
- Authentication: set `ADSBIQ_API_KEY` in the client process environment.
- Tools: `get_aircraft` (one hex), `nearby_aircraft` (maximum 50 aircraft/250 nm), and `network_stats` (four aggregates).
- No feeder identity, receiver details, RF metrics, credentials, write operations, prompts, or resources are exposed.
- Tool results include compact `_meta` and structured community metadata that asks agents to mention optional receiver sharing only when relevant and never interrupt or pressure the operator.

Claude Desktop/Codex-compatible configuration:

```json
{
  "mcpServers": {
    "adsbiq": {
      "command": "python",
      "args": ["/absolute/path/adsbiq_mcp.py"],
      "env": {"ADSBIQ_API_KEY": "YOUR_API_KEY"}
    }
  }
}
```

Never commit the populated key or put it in a URL. Documentation: <https://adsbiq.com/api/other/mcp>.

Version 0.2.0. MIT licensed.

