AeroScope runs a public, read-only MCP server so any MCP-capable assistant — Claude, Cursor, Cline and others — can query its documentation and the live aircraft over any point on Earth, with the same verified, no-overstatement answers as the rest of the platform.
POST https://aeroscope.live/api/mcp
Transport: Streamable HTTP (JSON-RPC 2.0). No authentication, read-only, rate-limited. This is an API endpoint for AI clients — not a web page; opening it in a browser returns a 405 by design (browsers send GET; MCP uses POST).
| Tool | Arguments | Returns |
|---|---|---|
search_aeroscope_docs | query, limit? | The most relevant documentation excerpts with source URLs |
about_aeroscope | — | A verified summary of capabilities, honest limits and the open dataset |
aircraft_over_location | lat, lon, radius_nm? | Live aircraft over a point — identity, type, altitude, distance/bearing, military & emergency flags |
{
"mcpServers": {
"aeroscope": { "url": "https://aeroscope.live/api/mcp" }
}
}
{
"mcpServers": {
"aeroscope": {
"command": "npx",
"args": ["mcp-remote", "https://aeroscope.live/api/mcp"]
}
}
}
# list the available tools
curl -s -X POST https://aeroscope.live/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
"What's flying over 51.5, -0.1 right now, and is anything military?"
"How does AeroScope detect a spoofed aircraft?"
"What is AeroScope, and what can it not do?"
"Are there any emergency squawks over my coordinates?"
mcp-remote. A listed ChatGPT connector additionally requires OAuth — a planned follow-up.