Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Amadeus

    Amadeus MCP(Model Context Protocol) Server

    38 stars
    Python
    Updated Oct 6, 2025

    Table of Contents

    • ✨ Features
    • ✈️ Flight Offers Search
    • 🌐 Demo
    • 🚀 Quick Start
    • Installing via Smithery
    • 1. Clone and Setup
    • 2. Get Your API Key and Set Environment
    • 3. Configure MCP Client
    • 🛠️ Tools
    • get_flight_offers
    • 📚 References
    • 📝 License

    Table of Contents

    • ✨ Features
    • ✈️ Flight Offers Search
    • 🌐 Demo
    • 🚀 Quick Start
    • Installing via Smithery
    • 1. Clone and Setup
    • 2. Get Your API Key and Set Environment
    • 3. Configure MCP Client
    • 🛠️ Tools
    • get_flight_offers
    • 📚 References
    • 📝 License

    Documentation

    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

    ---

    🚀 Quick Start

    Installing via Smithery

    To install Amadeus MCP Server for Claude Desktop automatically via Smithery:

    bash
    npx -y @smithery/cli install @donghyun-chae/mcp-amadeus --client claude

    1. Clone and Setup

    bash
    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

    bash
    cp .env.example .env

    Then edit .env and add your API credentials:

    bash
    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:

    bash
    {
        "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:

    bash
    {
        "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:

    json
    {
      "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

    • Model Context Protocol Python SDK
    • Amadeus Python SDK
    • Amadeus API Documentation

    ---

    📝 License

    MIT License © 2025 donghyun-chae

    Similar MCP

    Based on tags & features

    • MA

      Mayamcp

      Python·
      27
    • BI

      Biothings Mcp

      Python·
      25
    • FH

      Fhir Mcp Server

      Python·
      55
    • MC

      Mcp Aoai Web Browsing

      Python·
      30

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MA

      Mayamcp

      Python·
      27
    • BI

      Biothings Mcp

      Python·
      25
    • FH

      Fhir Mcp Server

      Python·
      55
    • MC

      Mcp Aoai Web Browsing

      Python·
      30

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k