# GetMyHotels MCP server

Search hotels, get live prices, and check out in chat. Guest search needs no sign-in.

## Links
- Registry page: https://www.getdrio.com/mcp/com-getmyhotels-getmyhotels
- Repository: https://github.com/fenilsonani/gmh

## Install
- Endpoint: https://mcp.getmyhotels.com
- Auth: Not captured

## Setup notes
- Remote endpoint: https://mcp.getmyhotels.com

## Tools
- search (Search) - Search GetMyHotels for hotels matching a query. Returns a list of results with ids that can be passed to `fetch` for full details. Provide the destination and travel dates in the query. Endpoint: https://mcp.getmyhotels.com
- fetch (Fetch) - Fetch the full record for a result id returned by `search` (a hotel) or for a booking reference (prefixed 'bk_'). Returns a document with id, title, text, url, and metadata. Endpoint: https://mcp.getmyhotels.com
- search_hotels (Search hotels) - Search live hotel availability for a destination and date range. Returns a price-sorted list of hotels (JSON in the text), each with a `ref` and its cheapest bookable room's `supplierRoomId`. To book: pass a room's `supplierRoomId` + the hotel `ref` to `get_checkout_quote` then `create_checkout`. For a hotel's other rooms (or a hotel not in the list), call `get_rooms`. Narrow with `keywords` (a hotel name, area, or amenities). Endpoint: https://mcp.getmyhotels.com
- get_rooms (Get hotel rooms) - List the bookable rooms for ONE hotel and date range. Each room's `supplierRoomId` is what you pass to `get_checkout_quote` / `create_checkout`. Use the hotel `ref` from `search_hotels` or `search`. Call this to see all of a chosen hotel's rooms, or to refresh availability before checkout. Endpoint: https://mcp.getmyhotels.com
- get_hotel_details (Get hotel details) - Get full property details (description, amenities, photos, policies, location) for a hotel, identified by its `ref` from `search_hotels` (or its supplierCode + supplierHotelId). Endpoint: https://mcp.getmyhotels.com
- get_checkout_quote (Get checkout quote) - Re-price a specific room live against the supplier before checkout (no booking, no charge). Use the `supplierRoomId` and price/currency from `search_hotels`. Returns the authoritative grand total, a `rateValidUntil` timestamp, and any taxes/fees. Endpoint: https://mcp.getmyhotels.com
- create_checkout (Create checkout) - Create a secure checkout for a chosen hotel room and return a getmyhotels.com URL where the guest completes payment. This does NOT charge the card — the guest pays on the hosted page. Confirm the hotel, room, dates, and price with the user before calling. Call `get_checkout_quote` first to confirm the live price. Endpoint: https://mcp.getmyhotels.com
- get_booking (Get booking) - Look up a hotel booking by its management token (sent in the confirmation email). Returns the booking status, hotel, dates, and guest details. Endpoint: https://mcp.getmyhotels.com
- list_trips (List saved trips) - List the signed-in user's saved trips (itineraries). Endpoint: https://mcp.getmyhotels.com
- save_trip (Save a trip) - Create a new saved trip (itinerary) for the signed-in user. Endpoint: https://mcp.getmyhotels.com
- add_trip_item (Add trip item) - Add an item (hotel, flight, activity, etc.) to a saved trip on a given day. Endpoint: https://mcp.getmyhotels.com
- list_my_bookings (List my bookings) - List the signed-in user's hotel bookings. Endpoint: https://mcp.getmyhotels.com
- get_my_booking (Get my booking) - Get full details of one of the signed-in user's bookings by its public id. Endpoint: https://mcp.getmyhotels.com
- request_booking_action_code (Request booking action code) - Email a 6-digit verification code to the booking owner, required before cancelling or modifying a booking. Step 1 of 2 — then call `cancel_booking`/`modify_booking` with the code. Endpoint: https://mcp.getmyhotels.com
- cancel_booking (Cancel booking) - Cancel one of the signed-in user's bookings. Requires the 6-digit `verificationCode` from `request_booking_action_code`. This may be irreversible and can trigger a refund per policy. Endpoint: https://mcp.getmyhotels.com
- modify_booking (Modify booking) - Change one of the signed-in user's bookings. Requires the 6-digit `verificationCode` from `request_booking_action_code`. Special-request edits always apply. A DATE change is pushed to the hotel supplier as a cancel-and-rebook at current availability, so it only works for suppliers that support amendment — for others (and when no room is available for the new dates) it returns an error asking you to cancel and rebook instead. A date change can shift the price and issue a new confirmation; the result's `supplierModifyStatus` says whether the supplier reservation was actually changed (`modified`), simulated (`simulated`), or the edit stayed local (`local_only`, e.g. special requests only). Never promise a date change went through unless `supplierModifyStatus` is `modified` or `simulated`. Endpoint: https://mcp.getmyhotels.com
- list_payment_methods (List saved cards) - List the signed-in user's saved payment cards (brand, last 4, expiry, default). Use the returned `publicId` with `create_one_click_checkout` to pre-select a card. Endpoint: https://mcp.getmyhotels.com
- create_one_click_checkout (Create one-click checkout) - Create a checkout for the signed-in user with a saved card pre-selected, and return a getmyhotels.com URL where they confirm + pay in one click. Does NOT charge the card — the user confirms on the hosted page. Get the `savedPaymentMethodPublicId` from `list_payment_methods`. Confirm the hotel, room, dates, and price with the user first. Endpoint: https://mcp.getmyhotels.com

## Resources
- ui://hotels/results-267p77pytx.html - Interactive hotel results grid + map MIME type: text/html;profile=mcp-app
- ui://hotels/detail-33idwby4yq.html - Hotel detail with photos, map, reviews, and bookable rooms MIME type: text/html;profile=mcp-app
- ui://hotels/checkout-1tohb9dxfg.html - Booking summary with a secure pay-on-getmyhotels link MIME type: text/html;profile=mcp-app

## Prompts
Not captured

## Metadata
- Owner: com.getmyhotels
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 15, 2026
- Source: https://registry.modelcontextprotocol.io
