Amadeus MCP Server

Amadeus MCP Server

Enables natural language search for flights, hotels, tours, and city information via the Amadeus Travel API, with automatic USD currency conversion.

Category
访问服务器

README

Amadeus MCP Server

npm version

A Model Context Protocol (MCP) server that provides access to Amadeus Travel API functionality, including flights, hotels, tours, and city information with automatic USD currency conversion.

Features

  • Flight Search: Search for flights with detailed information (prices in USD, airlines, duration, stops)
  • City Information: Get city details including coordinates and IATA codes
  • Tours & Activities: Discover activities and tours by location with USD pricing
  • Hotel Search: Find hotels with ratings and locations
  • Live Exchange Rates: Automatic currency conversion to USD for all prices

Prerequisites

Installation

Install from npm

npm install -g @fiqcodes/amadeus-mcp-server

Install from source

# Clone the repository
git clone https://github.com/fiqcodes/amadeus-mcp-server.git
cd amadeus-mcp-server

# Install dependencies
npm install

# Build the project
npm run build

# Link globally (optional)
npm link

Configuration

1. Get Amadeus API Credentials

  1. Go to Amadeus for Developers
  2. Sign up or log in
  3. Create a new app in the dashboard
  4. Copy your API Key and API Secret

2. Configure Claude Desktop

Add the server to your Claude Desktop configuration file:

On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

On Windows: %APPDATA%\Claude\claude_desktop_config.json

On Linux: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "amadeus": {
      "command": "amadeus-mcp-server",
      "env": {
        "AMADEUS_API_KEY": "your_api_key_here",
        "AMADEUS_API_SECRET": "your_api_secret_here"
      }
    }
  }
}

Or if running from source:

{
  "mcpServers": {
    "amadeus": {
      "command": "node",
      "args": ["/absolute/path/to/amadeus-mcp-server/build/index.js"],
      "env": {
        "AMADEUS_API_KEY": "your_api_key_here",
        "AMADEUS_API_SECRET": "your_api_secret_here"
      }
    }
  }
}

3. Restart Claude Desktop

Completely quit and reopen Claude Desktop for the changes to take effect.

Available Tools

1. get_flights

Search for flight offers between cities. All prices returned in USD.

Parameters:

  • origin (required): Origin airport IATA code (e.g., "JFK", "CGK")
  • destination (required): Destination airport IATA code (e.g., "LAX", "DPS")
  • departureDate (required): Departure date (YYYY-MM-DD)
  • returnDate (optional): Return date for round trips (YYYY-MM-DD)
  • adults (optional): Number of adults (default: 1)
  • travelClass (optional): ECONOMY, PREMIUM_ECONOMY, BUSINESS, FIRST
  • maxResults (optional): Max results to return (default: 5)

Example with Claude:

Find me flights from Jakarta (CGK) to Bali (DPS) on January 20, 2026

2. get_city

Get information about a city including name, country, IATA code, and geographic coordinates.

Parameters:

  • cityName (required): Name of the city

Example with Claude:

Get information about Tokyo

3. get_tours_activities

Search for tours and activities by location. Prices automatically converted to USD.

Parameters:

  • latitude (required): Latitude coordinate
  • longitude (required): Longitude coordinate
  • radius (optional): Search radius in km (default: 1)

Example with Claude:

Find activities in Paris at coordinates 48.8566, 2.3522

4. get_hotels

Search for hotels in a city using IATA code.

Parameters:

  • cityCode (required): City IATA code (e.g., "PAR", "NYC", "LON")
  • checkInDate (optional): Check-in date (YYYY-MM-DD)
  • checkOutDate (optional): Check-out date (YYYY-MM-DD)
  • adults (optional): Number of guests (default: 1)
  • radius (optional): Search radius (default: 5)
  • radiusUnit (optional): KM or MILE (default: KM)
  • ratings (optional): Filter by ratings (e.g., "3,4,5")
  • priceRange (optional): Price range (e.g., "50-200")

Example with Claude:

Find hotels in Paris for March 15-20, 2026

Usage with Claude

Once configured, you can ask Claude naturally:

  • "Find cheap flights from New York to London next month"
  • "Show me activities in Tokyo"
  • "What hotels are available in Paris for my trip?"
  • "Get me flight options from Jakarta to Singapore on January 25th"

Claude will automatically use the appropriate tools and present the results in a user-friendly format.

Development

Running in development mode

npm run dev

This will watch for changes and rebuild automatically.

Testing the server

Test the API integration:

export AMADEUS_API_KEY="your_key"
export AMADEUS_API_SECRET="your_secret"
npm run build && node build/test-amadeus.js

Using MCP Inspector

npx @modelcontextprotocol/inspector node build/index.js

Currency Conversion

The server automatically fetches live exchange rates from exchangerate-api.com and caches them for 24 hours. All non-USD prices are converted and returned with both original and USD amounts:

{
  "price": {
    "amount": "199.0",
    "currencyCode": "EUR",
    "usdAmount": 218.90,
    "originalAmount": 199.0,
    "originalCurrency": "EUR"
  }
}

Project Structure

amadeus-mcp-server/
├── src/
│   ├── index.ts          # Main server implementation
│   └── test-amadeus.ts   # Test script
├── build/                # Compiled JavaScript (generated)
├── package.json
├── tsconfig.json
├── README.md
└── .gitignore

Troubleshooting

"Authentication failed"

  • Verify your API key and secret are correct
  • Check if the environment variables are properly set in Claude config
  • Ensure you're using valid Amadeus credentials (test or production)

"Tool not found" or tools not showing

  • Make sure the server is properly configured in claude_desktop_config.json
  • Verify the path is absolute (not relative)
  • Restart Claude Desktop completely (quit and reopen)
  • Check Claude logs: Help → View Logs

"Rate limit exceeded"

  • Amadeus test API has rate limits (free tier)
  • Wait a few minutes before retrying
  • Consider upgrading to production API for higher limits

Build errors

rm -rf node_modules package-lock.json build
npm install
npm run build

API Documentation

For more details about the Amadeus API:

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.


Note: This MCP server uses the Amadeus Test API by default. For production use, update the BASE_URL in the code to https://api.amadeus.com and use production credentials.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选