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.
https://mcp.hudhudtrip.com/mcpSet 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/mcpClaude 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.
| Tool | What it returns | Arguments |
|---|---|---|
| search_airports | Resolve a city or airport name into IATA codes for a flight search. | query |
| search_hotel_destinations | Resolve a city, area or property name into a hotel lookup key. | query, pageSize |
| top_hotel_cities | The most-booked hotel destinations, with their lookup keys. | — |
| popular_flights | Featured routes and current deals. | — |
| popular_hotels | Featured hotels with rating, address and indicative price. | — |
| list_countries | Countries 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.
| Tool | What it returns | Arguments |
|---|---|---|
| search_flights | Live fares and availability from the airline suppliers. | origin, destination, departureDate, returnDate, adults, children, infants, cabin, directOnly |
| get_fare_rules | Baggage, change and refund rules for one offer. | tempSearchId |
| revalidate_flight_price | Re-confirm an offer’s live price, and return a checkout link. | searchId, tempSearchId, fareSourceCode |
| search_hotels | Live hotel availability and nightly rates for a date range. | hotelLookupKey, checkInDate, checkOutDate, adults, children, childAges |
| get_hotel_rooms | Room types, board basis and prices for one hotel. | searchId, tempSearchId |
| check_hotel_rate | Re-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.
| Tool | What it returns | Arguments |
|---|---|---|
| search_esim_plans | HSIM travel eSIM data plans by destination country or region. | country, region, limit |
| get_esim_checkout_link | A checkout link for a chosen eSIM plan. | offerId |
| get_esim_order_status | Delivery 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.
| Tool | What it returns | Arguments |
|---|---|---|
| get_my_orders | The 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 thehotelLookupKeyreturned bysearch_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].