AENA Flights MCP
The AENA Flights MCP server provides real-time flight data for all 50 Spanish airports managed by AENA.
Search flights (
search_flights): Query arrivals or departures by IATA code (e.g. MAD, BCN), filter by flight number, date (defaults to today), local time window, and hours back/forward. Automatically collapses codeshares and allows choosing data source:auto,website(up to 14 days ahead), orrest(past 54 hours + 24 hours ahead). Times are local Madrid time.Get flight (
get_flight): Retrieve detailed information for a specific flight by number, airport, and direction (arrivals/departures), including status, gates, terminals, and aircraft.List airports (
list_airports): Get all AENA airports with IATA/ICAO codes and city names.
The server automatically selects the best API source or allows manual override.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AENA Flights MCPShow me departures from Madrid-Barajas."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
βοΈ AENA Flights MCP
EspaΓ±ol: README.es.md
Live flight data for the 50 Spanish airports run by AENA, as an MCP server. Ask Claude things like "what departures leave Santiago this afternoon?" or "is IB0459 delayed?" and it answers from real airport data: times, gates, terminals, aircraft, status and codeshares.
It puts both of AENA's flight APIs behind one clean set of tools, so an agent asks for flights and gets back the same flight shape no matter which API answered.
π Use it in 30 seconds (no install)
The server runs publicly at https://aena-mcp.carlos-ls.workers.dev/mcp. Add it to Claude with one click:
That link opens claude.ai with the connector prefilled; just confirm. Works on every plan, Free included, and once added it is available in the Claude apps too, phone included. No account, no API key, nothing to configure.
Prefer to add it by hand? Claude β Settings β Connectors β Add custom connector, name it AENA Flights and paste the URL above.
π€ Also works in ChatGPT
ChatGPT has no one-click install link, but the same server works there (Plus, Pro and Business plans, web only):
Settings β Apps β Advanced settings β enable Developer mode
In the Apps panel press + and add the server with URL
https://aena-mcp.carlos-ls.workers.dev/mcp, authentication: none
Related MCP server: flight-tracker
π¬ Things you can ask
π« "Departures from MAD between 16:00 and 18:00"
π¬ "What flights arrive at BCN from London tomorrow afternoon?"
π "Where is flight UX7235 right now, which gate?"
ποΈ "List all AENA airports in the Canary Islands"
π₯οΈ Other ways to run it
How | For whom | Setup |
βοΈ Remote connector (above) | Everyone, iPhone included | One click |
π¦ Desktop extension | Claude Desktop | Download |
π© npm | Claude Code, Cursor, any MCP client |
|
π§ From source | Developers | See below |
Config for npm-based clients:
{
"mcpServers": {
"aena": {
"command": "npx",
"args": ["-y", "mcp-aena"]
}
}
}For Claude Code it is one command:
claude mcp add aena -- npx -y mcp-aenaπ§° Tools
search_flightsβ arrivals or departures for an airport. Filter by flight number, by date, or by a local-time window (afternoon =fromLocal 12:00,toLocal 20:00). Codeshares of the same physical flight collapse into one entry, and every time in the output is local Madrid time.get_flightβ one flight by number at an airport.list_airportsβ every AENA airport with IATA/ICAO codes, fetched live.
π Why two APIs
AENA exposes two ways to read flights, and each covers a gap the other leaves open.
π The website API is public and needs no credentials. It sees roughly 14 days ahead but has no past data. Good for discovery.
π The REST API uses OAuth2 and needs a client secret. It sees about 54 hours into the past and 24 ahead, and tells you the real operating flight behind a codeshare. Good for tracking.
The server picks the right one for you (source: "auto"), or you can force either. Without a secret it runs in website-only mode and still works. The public remote server has full REST access already configured.
π οΈ From source
pnpm install
pnpm build # tsc β dist/
pnpm test # unit tests over captured fixtures, no network, no credentials
pnpm inspect # drive a live stdio session with the MCP inspectorCopy .env.example to .env. The website API needs nothing. For the REST API set AENA_CLIENT_SECRET; AENA_CLIENT_ID and AENA_TENANT_ID already have working defaults.
The public remote server lives in worker/ (Cloudflare Workers, Streamable HTTP, no auth). To host your own:
cd worker
pnpm install
npx wrangler deploy
npx wrangler secret put AENA_CLIENT_SECRET # optional, enables the REST sourceParsing lives in pure normalizers (normalizeWebsiteRow, normalizeRestRow) so the mapping is tested without a live call. See CONTRIBUTING.md.
CI runs the tests on Node 20 and 22 plus an MCP inspector smoke. Tagged pushes (v*) publish to npm (OIDC trusted publishing), the MCP Registry, and attach a .mcpb bundle to the GitHub release.
π Notes on the data
Arrivals is
"A"in the REST API but"L"in the website API. The server hides this.The REST
airlineIATAfield actually carries the ICAO code. The server resolves both.Flight numbers differ by source: the REST API names flights by ICAO (
VLG1674), the website by IATA (VY1674).Neither API filters by flight number on the server, so searches pull the whole airport and filter locally.
Neither gives real takeoff or landing times, only scheduled and estimated. For wheels-off and wheels-on you need a source like FlightRadar24.
π License
MIT
Maintenance
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides access to real-time and historical flight data from Flightradar24 API, enabling users to track live aircraft positions, query flight histories, and retrieve comprehensive aviation information including aircraft, airline, and airport details.1514MIT
- AlicenseNot gradedqualityCmaintenanceProvides comprehensive flight tracking capabilities using the OpenSky Network API, enabling real-time flight data, geographic searches, historical data, and airport operations through MCP tools.MIT
- AlicenseNot gradedqualityCmaintenanceProvides live US airport operational status and delay data from the FAA, free and without authentication.17MIT
- AlicenseNot gradedqualityDmaintenanceProvides real-time flight status, airport weather, delays, cheap flight deals, and TSA wait times without requiring an API key.17MIT
Related MCP Connectors
Airports MCP β wraps AirportGap API (free, no auth required)
Flights MCP β wraps OpenSky Network API (free, no auth required)
Aviationstack MCP β global flight + airport + airline data
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MrGo2/aena-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server