Amadeus MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Amadeus MCP ServerFind flights from JFK to LAX on April 10"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Amadeus MCP Server
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
Related MCP server: Amadeus MCP Server
Prerequisites
Node.js 18 or higher
Amadeus API credentials (get them from Amadeus for Developers)
Installation
Install from npm
npm install -g @fiqcodes/amadeus-mcp-serverInstall 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 linkConfiguration
1. Get Amadeus API Credentials
Go to Amadeus for Developers
Sign up or log in
Create a new app in the dashboard
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, FIRSTmaxResults(optional): Max results to return (default: 5)
Example with Claude:
Find me flights from Jakarta (CGK) to Bali (DPS) on January 20, 20262. 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 Tokyo3. get_tours_activities
Search for tours and activities by location. Prices automatically converted to USD.
Parameters:
latitude(required): Latitude coordinatelongitude(required): Longitude coordinateradius(optional): Search radius in km (default: 1)
Example with Claude:
Find activities in Paris at coordinates 48.8566, 2.35224. 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, 2026Usage 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 devThis 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.jsUsing MCP Inspector
npx @modelcontextprotocol/inspector node build/index.jsCurrency 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
└── .gitignoreTroubleshooting
"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.jsonVerify 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 buildAPI Documentation
For more details about the Amadeus API:
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add some amazing feature')Push to the branch (
git push origin feature/amazing-feature)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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables comprehensive travel planning by integrating Google Travel Services and Amadeus GDS for dual flight and hotel searches, plus event discovery, weather forecasting, currency conversion, and location services. Combines consumer-friendly search with professional travel industry data for optimal trip planning.Last updated6MIT
- Alicense-qualityDmaintenanceEnables flight search capabilities through the Amadeus Flight Offers Search API, allowing users to search for flights between locations with specified dates using natural language queries.Last updated1MIT
- Alicense-qualityDmaintenanceProvides access to 50+ Amadeus Travel APIs for AI assistants to search and book flights, hotels, activities, and ground transfers, along with travel analytics, price predictions, and comprehensive travel reference data.Last updated32MIT
- Alicense-qualityCmaintenanceIntegrates with Amadeus Flight Offers Search API to provide flight search capabilities through natural language interfaces, enabling users to search for flight options between two locations with specific dates.Last updated58MIT
Related MCP Connectors
AI marketplace — flights, tours, activities, transport & more via MCP. No auth required.
Flight search & booking for AI agents. 400+ airlines, $20-50 cheaper than OTAs.
Live flight prices and working booking links for AI agents and travel apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fiqcodes/amadeus-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server