Developers · MCP

Connect your AI assistant to HudHudTrip

HudHudTrip runs a public Model Context Protocol server. Point Claude, Cursor, or anything else that speaks MCP at one URL and it can search live flights and hotels, look up airports and travel eSIM plans, and hand a traveller a real, prefilled booking link — with no API key, no account and no contract.

Endpoint
https://mcp.hudhudtrip.com/mcp

Set it up in under a minute

The transport is streamable HTTP, so there is nothing to install and nothing to run locally.

Claude Code

Run this in your terminal, then start a session:

claude mcp add --transport http hudhudtrip https://mcp.hudhudtrip.com/mcp

Claude Desktop

Settings → Developer → Edit Config, then add:

{
  "mcpServers": {
    "hudhudtrip": {
      "type": "http",
      "url": "https://mcp.hudhudtrip.com/mcp"
    }
  }
}

Cursor / Windsurf / VS Code

Add to your editor’s MCP configuration file:

{
  "mcpServers": {
    "hudhudtrip": {
      "url": "https://mcp.hudhudtrip.com/mcp"
    }
  }
}

Anything else

It is JSON-RPC 2.0 over HTTP POST. List the live tools with curl:

curl -s -X POST https://mcp.hudhudtrip.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Tools

Every tool is read-only. None of them creates a booking, holds inventory or charges a card — the booking tools re-confirm a live price and return a secure checkout link that a person completes. Some tools are enabled per deployment, so call tools/list for the authoritative set.

Lookups

Turn what a traveller says into the codes the search tools need. Free, fast, and safe to call first.

ToolWhat it returnsArguments
search_airportsResolve a city or airport name into IATA codes for a flight search.query
search_hotel_destinationsResolve a city, area or property name into a hotel lookup key.query, pageSize
top_hotel_citiesThe most-booked hotel destinations, with their lookup keys.
popular_flightsFeatured routes and current deals.
popular_hotelsFeatured hotels with rating, address and indicative price.
list_countriesCountries with ISO and international dialling codes.

Live search and pricing

These query the airline and hotel suppliers directly, so they take a few seconds to answer.

ToolWhat it returnsArguments
search_flightsLive fares and availability from the airline suppliers.origin, destination, departureDate, returnDate, adults, children, infants, cabin, directOnly
get_fare_rulesBaggage, change and refund rules for one offer.tempSearchId
revalidate_flight_priceRe-confirm an offer’s live price, and return a checkout link.searchId, tempSearchId, fareSourceCode
search_hotelsLive hotel availability and nightly rates for a date range.hotelLookupKey, checkInDate, checkOutDate, adults, children, childAges
get_hotel_roomsRoom types, board basis and prices for one hotel.searchId, tempSearchId
check_hotel_rateRe-confirm a room’s live rate, and return a checkout link.searchId, tempSearchId, hotelName

Travel eSIM (HSIM)

Data plans for the destination, delivered as a QR code after checkout. Rolling out — check tools/list.

ToolWhat it returnsArguments
search_esim_plansHSIM travel eSIM data plans by destination country or region.country, region, limit
get_esim_checkout_linkA checkout link for a chosen eSIM plan.offerId
get_esim_order_statusDelivery status of an eSIM order the caller already holds.orderId

Traveller account

Acts for a signed-in traveller, and only with a token that traveller supplied.

ToolWhat it returnsArguments
get_my_ordersThe signed-in traveller’s flight and hotel bookings. Requires their HudHudTrip access token as a bearer token.type

Conventions

  • Dates are YYYY-MM-DD. Airports are IATA codes. Hotel destinations use the hotelLookupKey returned by search_hotel_destinations.
  • Currency defaults to AED. Send x-currency: USD (or another supported code) on the request to change it.
  • Search is asynchronous. The search tools start a supplier query and poll for you, so a call can take several seconds. Empty is a valid answer — it means no availability, not a failure.
  • Freshness. Fares and availability change continuously. Anything the tools return is indicative; the price on hudhudtrip.com is the one that applies.
  • Fair use. The endpoint is rate limited per caller. If you need higher volume or deeper inventory access, email [email protected] and we will sort it out.

Frequently asked questions

What is the HudHudTrip MCP server?

It is a Model Context Protocol endpoint at https://mcp.hudhudtrip.com/mcp that lets an AI assistant query HudHudTrip directly — live flight fares, hotel availability, travel eSIM plans, airports and destinations — and hand the traveller a real hudhudtrip.com booking link. MCP is the open standard for connecting AI assistants to external tools and data.

Do I need an API key to use it?

No. The server needs no key, account or registration for search and lookup. A bearer token is only needed for the one tool that reads a signed-in traveller’s own bookings, and that token belongs to the traveller.

Can an AI agent book a flight or hotel through this server?

No, and that is deliberate. Every tool is read-only: nothing creates an order, holds inventory or charges a card. The booking tools re-confirm a live price and return a secure hudhudtrip.com checkout link, and a person completes the details and payment there.

Which destinations does HudHudTrip cover best?

HudHudTrip is a Middle East travel corridor specialist. Coverage is worldwide, but the depth — inventory, guides and support — is strongest for the UAE and the Gulf, Iraq and Kurdistan, Turkey, Egypt, Lebanon, Jordan, and the South Asian expat corridors to India, Pakistan and Bangladesh.

What currency are prices returned in?

AED by default. Send an x-currency header (for example x-currency: USD) on the MCP request to change the display currency.

Are the prices returned final?

No. Air fares and hotel rates change continuously and are re-confirmed with the supplier at checkout. Treat tool output as indicative and send the traveller to the hudhudtrip.com link for the price that actually applies.

How do I see exactly which tools are available right now?

Call the tools/list method on the endpoint. Some tools are enabled per deployment, so tools/list is always the authoritative list — this page is documentation, not a contract.

Who operates the HudHudTrip MCP server?

HudHudTrip is operated by High Cloud Technologies (HCT Group), Company Registration Number 944146, Dubai, United Arab Emirates. For questions about the MCP server or a data partnership, email [email protected].

Building something with travel data?

Tell us what you need from the corridor — deeper inventory access, net rates for an agency, or a white-labelled booking flow. Email [email protected].