ourairports_find_airports
ActiveTool of io.github.cyanheads/ourairports-mcp-server
Find airports within a radius of a latitude/longitude, ranked nearest-first by great-circle distance, each with its distance (km) and bearing (degrees true) from the query point. The grounding tool for "nearest airport to here" — pair it with a live aviation server to fetch weather or positions for the result. Takes a coordinate only: no geocoding, so resolve place names to lat/lon upstream first (e.g. an OpenStreetMap or Open-Meteo geocode tool). Closed airports are excluded unless include_closed is set. OurAirports is community-edited — not authoritative for flight operations.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"latitude",
"longitude"
],
"properties": {
"type": {
"enum": [
"large_airport",
"medium_airport",
"small_airport",
"heliport",
"seaplane_base",
"balloonport",
"closed"
],
"type": "string",
"description": "Restrict to one airport type (e.g. large_airport for major fields only)."
},
"limit": {
"type": "integer",
"maximum": 50,
"minimum": 1,
"description": "Maximum airports to return (1–50). Defaults to OURAIRPORTS_DEFAULT_SEARCH_LIMIT (20)."
},
"latitude": {
"type": "number",
"maximum": 90,
"minimum": -90,
"description": "Query point latitude in decimal degrees (WGS84), −90 to 90."
},
"longitude": {
"type": "number",
"maximum": 180,
"minimum": -180,
"description": "Query point longitude in decimal degrees (WGS84), −180 to 180."
},
"radius_km": {
"type": "number",
"default": 100,
"maximum": 500,
"minimum": 1,
"description": "Search radius in kilometers (1–500). Defaults to 100."
},
"include_closed": {
"type": "boolean",
"default": false,
"description": "Include airports of type \"closed\". Off by default."
}
}
}Parent server
io.github.cyanheads/ourairports-mcp-server
https://github.com/cyanheads/ourairports-mcp-server
2/7 registries