Amadeus MCP Server
by donghyun-chae
Amadeus MCP(Model Context Protocol) Server
What is Amadeus MCP Server
Amadeus MCP Server
MCP-Amadeus is a community-developed Model Context Protocol (MCP) server that integrates with the Amadeus Flight Offers Search API to provide flight search capabilities through natural language interfaces. Built for use with MCP-compatible clients (e.g., Claude Desktop).
This project enables users to easily search for flight options between two locations with specific dates using the power of large language models (LLMs) and the Amadeus API.
This project uses the official amadeus-python SDK
Disclaimer: This is an open-source project not affiliated with or endorsed by Amadeus IT Group. Amadeusยฎ is a registered trademark of Amadeus IT Group.
โจ Features
โ๏ธ Flight Offers Search
Retrieve flight options between two locations for specified dates.
"I'm looking for nonstop flights from New York to London on June 15th, any airline, for 1 adult."
โ โ๏ธ Returns available flight options with details like departure time, arrival time, airline, and price.
- Powered by Amadeus Flight Offers Search API
- Requires origin, destination, number of tickets and travel date input
๐ Demo
Once installed and connected to an MCP-compatible client (e.g., Claude Desktop), this server exposes tools that your AI assistant can use to fetch flight data.
๐ Quick Start
Installing via Smithery
To install Amadeus MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @donghyun-chae/mcp-amadeus --client claude
1. Clone and Setup
git clone https://github.com/donghyun-chae/mcp-amadeus.git
cd mcp-amadeus-flight-offers
# Install dependencies (using uv or pip)
uv sync
2. Get Your API Key and Set Environment
cp .env.example .env
Then edit .env
and add your API credentials:
AMADEUS_CLIENT_ID=your_client_id
AMADEUS_CLIENT_SECRET=your_client_secret
Sign up on https://developers.amadeus.com/ and create an app to obtain your Client ID
and Client Secret
.
3. Configure MCP Client
Register this server in your MCP client (e.g., Claude for Desktop).
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"amadeus": {
"command": "/ABSOLUTE/PATH/TO/PARENT/FOLDER/uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/src/",
"run",
"--env-file",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/.env",
"server.py"
]
}
}
}
Replace
/ABSOLUTE/PATH/TO/PARENT/FOLDER/
with the actual path to your project folder.
my case:
{
"mcpServers": {
"amadeus": {
"command": "/Users/asena/.local/bin/uv",
"args": [
"--directory",
"/Users/asena/mcp-amadeus/src/",
"run",
"--env-file",
"/Users/asena/mcp-amadeus/.env",
"server.py"
]
}
}
}
๐ ๏ธ Tools
After installation, the following tool is exposed to MCP clients:
get_flight_offers
Retrieves flight offers from the Amadeus Flight Offers Search API.
Request:
{
"action": "tool",
"name": "get_flight_offers",
"params": {
"origin": "JFK",
"destination": "LHR",
"departure_date": "2025-06-15"
}
}
Parameters:
Name | Type | Required | Description | Example |
---|---|---|---|---|
origin | string | Yes | IATA code of departure city/airport | JFK |
destination | string | Yes | IATA code of destination city/airport | LHR |
departure_date | string | Yes | Departure date (YYYY-MM-DD) | 2025-06-15 |
return_date | string | No | Return date (YYYY-MM-DD). One-way if omitted | 2025-06-20 |
adults | integer | Yes | Number of adults (1-9). Default: 1 | 2 |
children | integer | No | Number of children (2-11). Max total: 9 | 1 |
infants | integer | No | Number of infants (โค2). Max: # of adults | 1 |
travel_class | string | No | Cabin class: ECONOMY, BUSINESS, etc. | ECONOMY |
non_stop | boolean | No | If true, only non-stop flights. Default: false | true |
currency_code | string | No | Currency in ISO 4217 (e.g., USD) | EUR |
max_price | integer | No | Max price per traveler | 500 |
max | integer | No | Max number of offers. Default: 250 | 10 |
Output: Returns flight offers in JSON format with airline, times, duration, and pricing details from Amadeus.
๐ References
๐ License
MIT License ยฉ 2025 donghyun-chae
Leave a Comment
Comments section will be available soon. Stay tuned!
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
Ableton Live MCP Server
MCP Server implementation for Ableton Live OSC control
Airbnb MCP Server
AI Agent Marketplace Index Search MCP Server
MCP Server for AI Agent Marketplace Index from DeepNLP
Algorand MCP Implementation
Algorand Model Context Protocol (Server & Client)
mcp-server-apache-airflow
pypi.org/project/mcp-server-apache-airflow/
airtable-mcp-server
๐๏ธ๐ค Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
Airtable MCP Server
Search, create and update Airtable bases, tables, fields, and records using Claude Desktop and MCP (Model Context Protocol) clients
Alphavantage MCP Server
A MCP server for the stock market data API, Alphavantage API.
Anki MCP Server
An MCP server for Anki
any-chat-completions-mcp MCP Server
Submit Your MCP Server
Share your MCP server with the community
Submit Now