Skip to main content

Amadeus Connector

Enterprise Feature

The Amadeus connector is available in AxonFlow Enterprise Edition. Full setup documentation is available in the Enterprise Documentation Portal.

Contact Sales | Request Demo

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?

CapabilityBenefit
Sub-10ms Policy EnforcementGovernance checks before every travel query
Budget PoliciesEnforce travel budget limits automatically
Rate Limit ManagementBuilt-in rate limiting to stay within API quotas
Audit LoggingComplete 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

OperationDescription
search_flightsSearch flight offers with real-time pricing
search_hotelsSearch hotel availability and rates
lookup_airportGet airport details by city or IATA code

Getting Enterprise Access

The Amadeus connector requires an AxonFlow Enterprise license:

  1. Contact Sales - [email protected]
  2. Request Demo - See the connector in action with the Trip Planner demo
  3. 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.