Travel Agent MCP Server

64 tools. 19 can modify or destroy data without limits.

9 destructive tools with no built-in limits. Policy required.

Last updated:

19 can modify or destroy data
45 read-only
64 tools total

Community server · catalogue entry verified 04/07/2026

How to control Travel Agent MCP Server ↓

What Travel Agent MCP Server exposes to your agents

Read (45) Write / Execute (10) Destructive / Financial (9)
Critical Risk

The most dangerous Travel Agent MCP Server tools

19 of Travel Agent MCP Server's 64 tools can modify, destroy, or commit something on every call — and an agent calls them with no built-in limits.

How to control Travel Agent MCP Server

PolicyLayer is an MCP gateway — it sits between your AI agents and Travel Agent MCP Server, and nothing reaches the server without passing your rules. These are the rules we recommend:

Block financial tools by default
{
  "BOOK_FLIGHT": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Requires human approval."
      }
    ]
  }
}

Financial tools should be explicitly enabled per use case, not open by default.

Deny destructive operations
{
  "CANCEL_FLIGHT_BOOKING": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Blocked by default. Requires approval."
      }
    ]
  }
}

Destructive tools should never be available to autonomous agents without human approval.

Rate limit write operations
{
  "ANSWER_VISA_FOLLOWUP": {
    "limits": [
      {
        "counter": "answer_visa_followup_per_hour",
        "window": "hour",
        "max": 30,
        "scope": "grant"
      }
    ]
  }
}

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
{
  "CHECK_DISCOUNT_PROMO": {
    "limits": [
      {
        "counter": "check_discount_promo_per_minute",
        "window": "minute",
        "max": 60,
        "scope": "grant"
      }
    ]
  }
}

Controls API costs and prevents retry loops from exhausting upstream rate limits.

  1. Create a free account and register Travel Agent MCP Server — nothing to install.
  2. Add these rules — paste them, or build them visually. Tune the limits to your setup.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
ENFORCE POLICY ON TRAVEL AGENT →

Instant setup, no code required.

All 64 Travel Agent MCP Server tools

READ 45 tools
Read CHECK_DISCOUNT_PROMO Check whether a discount/promo code is valid and what it offers. Read CHECK_HOTEL_AVAILABILITY Re-check live availability and price for a specific hotel offer before booking. Read CONFIRM_FLIGHT_PRICE Re-price/confirm an offer immediately before booking (fares can change between search and booking). Read GET_BUSIEST_TRAVEL_PERIOD Get the busiest travel period (by month) for a given city and year. Read GET_CURRENT_USER Get the logged-in user Read GET_FLIGHT_BOOKING Get the full itinerary for one of the logged-in user Read GET_FLIGHT_FARE_UPSELL Show branded fare upgrade options (e.g. more baggage, flexible change) for a searched offer. Read GET_FLIGHT_PRICE_ANALYSIS Check whether a route/date Read GET_FLIGHT_SEAT_PRICE Check the price of a specific seat on a booking before selecting it. Read GET_FLIGHT_SEATMAP_BY_OFFER Get the seatmap for a flight offer before booking. Requires an offerRef from SEARCH_FLIGHTS. Read GET_FLIGHT_SEATMAP_BY_ORDER Get the seatmap for an existing (already booked) flight order, by Amadeus order ID. Read GET_FLIGHT_TICKET_DOWNLOAD_LINK Get the direct download URL for a booking Read GET_HOTEL_BOOKING Get full detail for one of the logged-in user Read GET_IMMIGRATION_BOOKING Get full detail for one of the logged-in user Read GET_IMMIGRATION_INFO_BY_COUNTRY Get immigration services, requirements and fees available for a specific country. Read GET_IMMIGRATION_NOTIFICATIONS Get the logged-in user Read GET_IMMIGRATION_TRANSACTION_DETAIL Get detail for one immigration transaction. Read GET_IMMIGRATION_TRANSACTIONS List the logged-in user Read GET_IMMIGRATION_UPDATES Get all status updates across the logged-in user Read GET_IMMIGRATION_UPDATES_BY_BOOKING Get status updates for one specific immigration booking. Read GET_MOST_BOOKED_DESTINATIONS Get the most-booked destinations from a given origin city for a given month. Read GET_MOST_TRAVELED_DESTINATIONS Get the most-traveled-to destinations from a given origin city for a given month. Read GET_POPULAR_FLIGHT_ROUTES Get the most popular flight routes right now (for inspiration, not a live search). Read GET_USER_NOTIFICATIONS Get the logged-in user Read GET_USER_PROFILE Get the logged-in user Read GET_VISA_BOOKING Get full detail for one of the logged-in user Read GET_VISA_BOOKING_BY_APPLICATION_UUID Look up a visa booking by its application UUID (used for QR/receipt lookups). Read GET_VISA_FOLLOWUP_QUESTIONS Get any outstanding follow-up questions the visa processing team needs answered. Read GET_VISA_INFO_BY_COUNTRY Get visa requirements, visa types, fees, FAQs and news for a specific destination country. Read GET_VISA_NOTIFICATIONS Get the logged-in user Read GET_VISA_TRANSACTION_DETAIL Get detail for one visa transaction. Read GET_VISA_TRANSACTIONS List the logged-in user Read GET_VISA_UPDATES Get all status updates across the logged-in user Read GET_VISA_UPDATES_BY_BOOKING Get status updates for one specific visa booking. Read LIST_MY_FLIGHT_BOOKINGS List the logged-in user Read LIST_MY_HOTEL_BOOKINGS List the logged-in user Read LIST_MY_IMMIGRATION_BOOKINGS List the logged-in user Read LIST_MY_VISA_BOOKINGS List the logged-in user Read LOGOUT_USER Log the current user out and end this session. Read PREDICT_FLIGHT_CHOICE Get an AI-ranked prediction of which flight offer from the most recent SEARCH_FLIGHTS call travelers Read SEARCH_FLIGHTS Search live flight offers (one-way, round-trip, or multi-city). Returns compact summaries with an Read SEARCH_HOTEL_CITIES Raw hotel-ID lookup by city code and dates (lower-level than SEARCH_HOTELS; no live pricing). Read SEARCH_HOTELS Search bookable hotel offers in a city for given dates and guest count (all-in-one pipeline — Read VERIFY_FLIGHT_BOOKING Publicly verify a flight booking by its TVA ID (e.g. from a QR code) — no login required. Read VERIFY_OTP Verify a one-time code sent by email — used both to confirm a new registration and to complete a

Related servers

Other MCP servers with similar tools — same risk classification, starter policies for each.

Questions about Travel Agent MCP Server

Can an AI agent move money through the Travel Agent MCP Server MCP server? +

Yes. The Travel Agent MCP Server server exposes 5 financial tools including BOOK_FLIGHT, BOOK_HOTEL, CONFIRM_FLIGHT_PAYMENT. Without a policy, an autonomous agent can call these with no spend caps, no rate limits, and no approval flow. PolicyLayer lets you block financial tools by default, require human approval, or set per-tool rate limits — enforced on every call.

Can an AI agent delete data through the Travel Agent MCP Server MCP server? +

Yes. The Travel Agent MCP Server server exposes 4 destructive tools including CANCEL_FLIGHT_BOOKING, CANCEL_HOTEL_BOOKING, CLOSE_ACCOUNT. These permanently remove resources with no undo. PolicyLayer blocks destructive tools by default so they never reach the upstream server.

How do I prevent bulk modifications through Travel Agent MCP Server? +

The Travel Agent MCP Server server has 8 write tools including ANSWER_VISA_FOLLOWUP, CHANGE_PASSWORD, EDIT_USER_PROFILE. Set a rate limit in your policy -- for example, 10 calls per hour prevents an agent from making more than 10 modifications per hour. PolicyLayer enforces this at the gateway, before calls reach Travel Agent MCP Server.

How many tools does the Travel Agent MCP Server MCP server expose? +

64 tools across 3 categories: Destructive, Read, Write. 45 are read-only. 19 can modify, create, or delete data.

How do I enforce a policy on Travel Agent MCP Server? +

Register the Travel Agent MCP Server MCP server in PolicyLayer, apply the suggested rules above (adjust the limits to your use case), and point your AI client at the PolicyLayer proxy URL instead of the server directly. Your agents keep the same tools; PolicyLayer evaluates every call against policy before it executes. Nothing to install, live in minutes.

Enforce policy on every Travel Agent MCP Server tool call.

Deterministic rules across all 64 Travel Agent MCP Server tools. Per-identity grants. Full audit log. Live in minutes. Nothing to install.

Instant setup, no code required.

64 Travel Agent MCP Server tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.