amadeus-mcp-server
An open-source MCP server that exposes the Amadeus Self-Service APIs as tools for flight status, delay prediction, flight search, passenger rights, and disruption handling.
README
🛰️ Amadeus MCP Server
An open-source Model Context Protocol server that exposes the Amadeus Self-Service APIs as tools for Claude and any MCP client. Ask Claude "Is AF1234 delayed tomorrow? What are my rights?" and it answers with real flight data and cited passenger-rights passages.
Tools
| Tool | Backing source | What it does |
|---|---|---|
flight_status |
Amadeus On-Demand Flight Status | Scheduled vs estimated times, delay minutes, cancellation flag |
predict_delay |
Amadeus Flight Delay Prediction | P(delay > 2h) for a flight |
search_flights |
Amadeus Flight Offers Search | Bookable non-stop offers with prices and seats left |
passenger_rights |
RAG corpus (EU261, carrier policies) | Policy passages with named sources — no un-cited entitlements |
handle_disruption |
amadeus-disruption-agent | Runs the full LangGraph disruption pipeline and returns the grounded passenger message + trace |
Architecture
flowchart LR
C[Claude / any MCP client] -- MCP (stdio) --> S[amadeus-mcp-server]
S --> T1[flight_status]
S --> T2[predict_delay]
S --> T3[search_flights]
S --> T4[passenger_rights]
S --> T5[handle_disruption]
T1 & T2 & T3 -.-> A[(Amadeus Self-Service APIs)]
T4 -.-> R[(EU261 + carrier policy corpus · BM25 RAG)]
T5 -.-> P[disruption-agent LangGraph pipeline]
P -.-> A
P -.-> R
All five tools are backed by the disruption-agent
package — one shared data layer for OAuth2, response normalisation, mock/live parity
and the policy corpus. The two projects compose: this server is the interface
(any MCP client becomes a travel assistant), the agent is the automation
(proactive end-to-end disruption handling).
Quickstart
Claude Code
claude mcp add amadeus -- uvx --from git+https://github.com/Thaynabarreiro/amadeus-mcp-server amadeus-mcp-server
Or from a local clone:
git clone https://github.com/Thaynabarreiro/amadeus-mcp-server
cd amadeus-mcp-server
python -m venv .venv && source .venv/bin/activate && pip install -e .
claude mcp add amadeus -- $(pwd)/.venv/bin/amadeus-mcp-server
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"amadeus": {
"command": "/path/to/amadeus-mcp-server/.venv/bin/amadeus-mcp-server",
"env": { "AGENT_MODE": "mock" }
}
}
}
Try it
No credentials needed — the default mock mode replays realistic fixtures. Ask Claude:
"Check the status of AF1234 tomorrow. If it's disrupted, what are my rights under EU261, and what rebooking options exist?"
"Run the disruption handler for AF1234 tomorrow and show me the passenger message."
Live mode
Set environment variables (free test keys at developers.amadeus.com):
"env": {
"AGENT_MODE": "live",
"AMADEUS_CLIENT_ID": "...",
"AMADEUS_CLIENT_SECRET": "..."
}
Design notes
- Grounded by construction —
passenger_rightsreturns passages with sources, so the model can cite EU261 or carrier policy instead of asserting entitlements from memory. - Mock/live parity — mock fixtures mirror live response shapes; switching modes changes the data source, not tool behaviour. That makes the server testable in CI and demoable anywhere.
- Thin server, shared core — tools delegate to the
disruption-agentpackage; OAuth2 token caching, normalisation and retrieval logic live in one repository.
Development
pip install -e ".[dev]"
pytest # 8 offline tests: tool behaviour + MCP protocol registration
ruff check src tests
Built by Thayná Barreiro · MIT License. Not affiliated with Amadeus IT Group; uses the public Amadeus for Developers Self-Service APIs.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.