Amadeus Connector
The Amadeus connector is available in AxonFlow Enterprise Edition. Full setup documentation is available in the Enterprise Documentation Portal.
Connect AxonFlow to the Amadeus Global Distribution System (GDS) for flight search, hotel booking, and real-time travel pricing.
Overview
The Amadeus MCP connector enables your AI agents to:
- Search flights with real-time pricing
- Search and book hotels
- Look up airport information (IATA codes, locations)
- Access Amadeus Self-Service APIs
Best For: Travel booking agents, trip planners, flight comparison tools, corporate travel management.
Why Amadeus + AxonFlow?
| Capability | Benefit |
|---|---|
| Sub-10ms Policy Enforcement | Governance checks before every travel query |
| Budget Policies | Enforce travel budget limits automatically |
| Rate Limit Management | Built-in rate limiting to stay within API quotas |
| Audit Logging | Complete trail of all travel searches |
Example Use Cases
Travel Agent Assistant
Build an AI travel agent that searches flights and hotels while enforcing corporate travel policies:
// Search flights with policy enforcement
const response = await client.query({
connector: 'amadeus-travel',
statement: 'search_flights',
parameters: {
origin: 'Paris',
destination: 'New York',
departure_date: '2025-03-15',
adults: 2
}
});
Corporate Travel Compliance
Automatically enforce travel budget limits:
- Block bookings exceeding budget thresholds
- Route high-value bookings for approval
- Track travel spend by department
Trip Planning Workflows
Combine with Multi-Agent Planning (MAP) for parallel searches:
const results = await client.executeParallel([
{ connector: 'amadeus', statement: 'search_flights', params: flightQuery },
{ connector: 'amadeus', statement: 'search_hotels', params: hotelQuery }
]);
Supported Operations
| Operation | Description |
|---|---|
search_flights | Search flight offers with real-time pricing |
search_hotels | Search hotel availability and rates |
lookup_airport | Get airport details by city or IATA code |
Getting Enterprise Access
The Amadeus connector requires an AxonFlow Enterprise license:
- Contact Sales - [email protected]
- Request Demo - See the connector in action with the Trip Planner demo
- Enterprise Docs - Full setup guide available at enterprise-docs.getaxonflow.com
See It In Action
Check out the Trip Planner Example to see the Amadeus connector powering a full travel booking agent.