amadeus-mcp-server
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., "@amadeus-mcp-serverIs AF1234 delayed? What are my rights?"
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.
🛰️ 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 |
| Amadeus On-Demand Flight Status | Scheduled vs estimated times, delay minutes, cancellation flag |
| Amadeus Flight Delay Prediction | P(delay > 2h) for a flight |
| Amadeus Flight Offers Search | Bookable non-stop offers with prices and seats left |
| RAG corpus (EU261, carrier policies) | Policy passages with named sources — no un-cited entitlements |
| Runs the full LangGraph disruption pipeline and returns the grounded passenger message + trace |
Related MCP server: Amadeus Agent
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 -.-> RAll 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-serverOr 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-serverClaude 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 testsBuilt by Thayná Barreiro · MIT License. Not affiliated with Amadeus IT Group; uses the public Amadeus for Developers Self-Service APIs.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Thaynabarreiro/amadeus-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server