Labsco
donghyun-chae logo

Amadeus MCP Server

โ˜… 57

from donghyun-chae

Search for flight offers using the Amadeus Flight Offers Search API.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Amadeus MCP Server

smithery badge

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.

amadeus-mcp


๐Ÿ› ๏ธ 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:

NameTypeRequiredDescriptionExample
originstringYesIATA code of departure city/airportJFK
destinationstringYesIATA code of destination city/airportLHR
departure_datestringYesDeparture date (YYYY-MM-DD)2025-06-15
return_datestringNoReturn date (YYYY-MM-DD). One-way if omitted2025-06-20
adultsintegerYesNumber of adults (1-9). Default: 12
childrenintegerNoNumber of children (2-11). Max total: 91
infantsintegerNoNumber of infants (โ‰ค2). Max: # of adults1
travel_classstringNoCabin class: ECONOMY, BUSINESS, etc.ECONOMY
non_stopbooleanNoIf true, only non-stop flights. Default: falsetrue
currency_codestringNoCurrency in ISO 4217 (e.g., USD)EUR
max_priceintegerNoMax price per traveler500
maxintegerNoMax number of offers. Default: 25010

Output: Returns flight offers in JSON format with airline, times, duration, and pricing details from Amadeus.


๐Ÿ“š References


๐Ÿ“ License

MIT License ยฉ 2025 donghyun-chae