Offline global aviation reference β airports, runways, navaids, frequencies from OurAirports.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Resolve airport codes (IATA/ICAO/GPS/local), search airports, find the nearest by coordinate, and look up runways, navaids, and radio frequencies from the bundled public-domain OurAirports dataset via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://ourairports.caseyjhand.com/mcp
ourairports-mcp-server is the static aviation reference layer for resolving airport identifiers and grounding coordinates. It answers what exists β the catalog of airports, their codes, runways, navaids, and radio frequencies β to complement live aviation services that answer what is happening (weather, positions).
The entire OurAirports dataset is dedicated to the public domain and published as flat CSVs. Those six CSV files β airports, runways, navaids, airport frequencies, countries, and regions (~178k rows, ~20 MB) β are bundled into the package and baked into the Docker image at build time. At startup the server parses them into in-memory indices; every tool is then a local query. The result has no API key, no rate limit, and no upstream dependency to inherit an outage from.
How the working model fits together:
ident. A single code parameter resolves against a unified index (priority: ident β ICAO β IATA β GPS β local), and the response echoes the full code set so an ambiguous national code is self-correcting. A missing code (no IATA for a small field) is reported as null, never a 404.Float64Array of every airport (or navaid) position and return the nearest results ranked by distance, each with its bearing β sub-millisecond at this scale, no spatial index needed.OurAirports is community-edited. The data is surfaced as-is and is not authoritative for real flight operations β treat it the way you would any crowd-sourced reference.
Six read-only tools, all local queries against the bundled index β code resolution and detail, airport and runway search, coordinate grounding, navaids, and the country/region lookup table:
| Tool | Description |
|---|---|
ourairports_search_airports | Full-text and faceted search over the airport corpus by name, municipality, country, region, or type. Ranked summaries, closed airports excluded by default. |
ourairports_search_runways | Search runways across all airports by surface, length, width, and lighting, joined back to their airports and filtered by country, region, or airport type. One flat { airport, runway } row per matching runway. |
ourairports_get_airport | Full record for one airport resolved by any code (IATA/ICAO/GPS/local/ident), with its runways and radio frequencies inline. |
ourairports_find_airports | Airports within a radius of a coordinate, ranked nearest-first by great-circle distance, with distance and bearing. |
ourairports_find_navaids | Navigation aids (VOR, VOR-DME, DME, NDB, NDB-DME, TACAN, VORTAC) near a coordinate or serving a specific airport. |
ourairports_list_countries | Countries present in the dataset with ISO codes and airport counts; optional continent filter and nested regions. The lookup table for valid country/region filter values. |
ourairports_search_airportsThe common entry point β search by free text, facets, or both.
country (ISO 3166-1 alpha-2), region (ISO 3166-2), and type β country/region are exact match, case-insensitive, with surrounding whitespace ignoredinclude_closedourairports_get_airportourairports_search_runwaysCross-airport runway search β the counterpart to ourairports_get_airport, which lists runways for one already-known airport.
country, region, type) narrow the airports first; runway facets (surface, min_length_ft, min_width_ft, lighted) then filter their runwayssurface is a case-insensitive substring match against the raw upstream surface string (no controlled vocabulary β a shorter fragment like asp matches ASP, ASPH, and Asphalt), not an exact code{ airport, runway } row per matching runway β an airport with three matching runways contributes three rowsmin_*_ft filter is set β never assumed to meet a threshold the data can't confirminclude_closed_airports / include_closed_runways is setourairports_get_airportThe detail tool β one call returns everything the common case needs.
code case-insensitively across all five identifier spaces (priority: ident β ICAO β IATA β GPS β local); surrounding whitespace is ignoredinclude trims the response to a subset, and the output's included field distinguishes a relation omitted by include from one that genuinely has no recordsresolvedVia / resolutionNote, with an ambiguity warning for shared national codes so a wrong resolution is self-correctingnull; closed airports always resolveunknown_code error with a recovery hint when no identifier space matchesourairports_find_airportsThe grounding tool β turn a latitude/longitude into the nearest airport(s).
distanceKm and bearingDeg (degrees true) from the query pointradius_km (1β500, default 100), optional type filter, include_closed opt-inradius_kmourairports_find_navaidsNavigation aids two ways β spatially or by airport.
latitude + longitude (+ optional radius_km) ranks navaids nearest-first with distance and bearingairport_code returns the navaids serving that airportfrequencyKhz 114500) and MHzunknown_code error) from "airport found but has no associated navaids" (empty list with a note)| Type | Name | Description |
|---|---|---|
| Resource | airport://{code} | Single airport record by any code (IATA/ICAO/GPS/local/ident), with runways and frequencies inline. |
The airport://{code} resource is a stable-URI twin of ourairports_get_airport for clients that inject resource context. All data is reachable from the tools alone β tool-only clients lose nothing. The corpus is not exposed as a resource list (enumerating 85k airports is a dump, not a discovery aid); discovery is ourairports_search_airports.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/ourairports-mcp-server)<a href="https://allmcps.com/mcp/ourairports-mcp-server"><img src="https://allmcps.com/api/badge/ourairports-mcp-server?style=directory" alt="Ourairports MCP Server on AllMCPs" /></a>