MCP Amadeus MCP Server

This project enables users to easily search for flight options between two locations with specific dates using the power of large language models

Local serverstdioPython

What is the MCP Amadeus MCP server?

Most developer tooling work still happens through a UI a human drives. MCP Amadeus MCP server moves it into the conversation instead. 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.

The tools it exposes

The server publishes 1 tool. What each one is for:

  • get_flight_offers — Retrieves flight offers from the Amadeus Flight Offers Search API

What it needs from you

Configuration is passed through the environment: AMADEUS_CLIENT_ID, AMADEUS_CLIENT_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Amadeus's toolset — get_flight_offers — is a fair guide to whether it matches your workflow. It is maintained by donghyun-chae; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_flight_offersRetrieves flight offers from the Amadeus Flight Offers Search API.

How to install the MCP Amadeus MCP server

{
  "mcpServers": {
    "amadeus": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "AMADEUS_CLIENT_ID": "your-value",
        "AMADEUS_CLIENT_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
AMADEUS_CLIENT_IDConfiguration value read at startup.Optional
AMADEUS_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Amadeus to get flight offers.

Frequently asked questions

It connects MCP Amadeus to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (get_flight_offers) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Amadeus directly.