← catalogue · rank #100

getmyhotels

Return bookable hotel rates

third party hotels 4/100 simple

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

Job
Return bookable hotel rates
Why this rank
registry row
Provider
com.getmyhotels
Money path
List / affiliate later — do not build this ourselves
Pricing model
unknown
Transport
unknown
Verification
official registry listing
Technical name
com.getmyhotels/getmyhotels

Usability

Skill: GetMyHotels lets you search real hotels, price them live, and start a booking. Booking workflow: 1. `search_hotels` (destination + checkIn/checkOut + guests) returns a price-sorted list in the text as JSON. Each hotel has a `ref` and a `cheapestRoom.supplierRoomId`. 2. To see all… Docs: https://github.com/fenilsonani/gmh Tools: search, fetch, search_hotels, get_rooms, get_hotel_details, get_checkout_quote. Best live test 4/5 — Substantial reply — check it matches the job. Weakest 0/5 — Unreachable / timeout. Not usable today for a real traveller job.

usefulness 2.3/5 hotel search https://mcp.getmyhotels.com

How to use it (server skill)

GetMyHotels lets you search real hotels, price them live, and start a booking. Booking workflow: 1. `search_hotels` (destination + checkIn/checkOut + guests) returns a price-sorted list in the text as JSON. Each hotel has a `ref` and a `cheapestRoom.supplierRoomId`. 2. To see all of one hotel's rooms (or refresh availability), call `get_rooms` with the hotel `ref`. 3. `get_checkout_quote` (supplierRoomId + ref + dates + totalPrice + currency) confirms the live price. 4. `create_checkout` returns a getmyhotels.com link where the guest confirms and pays. It does NOT charge a card — never claim a…

docs · https://github.com/fenilsonani/gmh

What it is for

Hotel/stay search with live prices.

Example interactions

Asks chosen for this MCP’s job — not a generic flight search. Score is from the live reply.

1. Search GetMyHotels for hotels matching a query

score 4/5 · Substantial reply — check it matches the job. · live · search

call

{
  "tool": "search",
  "arguments": {
    "query": "Dubai Marina",
    "destination": "CDG",
    "adults": 2
  }
}

reply

Search failed: [ { "code": "invalid_date", "path": [ "checkIn" ], "message": "Invalid date" }, { "code": "invalid_date", "path": [ "checkOut" ], "message": "Invalid date" } ]

2. Search live hotel availability for a destination and date range

score 0/5 · Unreachable / timeout. · live · search_hotels

call

{
  "tool": "search_hotels",
  "arguments": {
    "destination": "CDG",
    "checkIn": "2026-11-10",
    "checkOut": "2026-11-13",
    "adults": 2
  }
}

reply

{"_raw": "The read operation timed out"}

3. Re-price a specific room live against the supplier before checkout (no booking, no charge)

score 3/5 · Thin but ran. · live · get_checkout_quote

call

{
  "tool": "get_checkout_quote",
  "arguments": {
    "supplierRoomId": "Dubai Marina",
    "checkIn": "2026-11-10",
    "checkOut": "2026-11-13",
    "totalPrice": 2,
    "currency": "EUR",
    "adults": 2
  }
}

reply

Provide `ref` (or supplierCode + supplierHotelId) from `search_hotels`.

Open source / endpoint Business model

Verified means the listing passed the checks named above on the dates shown. It is not a guarantee of booking success.