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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server that connects to Amadeus API, enabling AI assistants to search flights, analyze prices, find best travel deals, and plan multi-city trips.Last updated136MIT
- Flicense-qualityDmaintenanceA proof-of-concept MCP server that allows LLM agents to query live flight booking information via Amadeus, including cheapest tickets, destinations, and airline routes.Last updated1
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) server built with mcp-framework that provides tools for flight-related operations. This appears to be a template or starter project with example tools that can be extended for flight search and booking functionality.Last updated1
- Alicense-qualityDmaintenanceAn MCP server that integrates with the Amadeus Flight Availabilities Search API to allow users to search for available flights and view seat availability in real-time.Last updatedMIT
Related MCP Connectors
Geo-based flight search MCP server. Find more flights between any two places on earth
AI marketplace β flights, tours, activities, transport & more via MCP. No auth required.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/Thaynabarreiro/amadeus-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server