Labsco
Price-Win logo

pricewin-booking-assistant

by price-win ยท part of price-win/pricewin-skills-hub

Recommend hotels and rooms, generate direct OTA booking links for Agoda and Booking.com. Use when booking a hotel, getting room recommendations, or generating booking links.

๐Ÿงฉ One of 5 skills in the price-win/pricewin-skills-hub package โ€” works on its own, and pairs well with its siblings.

This is the playbook your agent receives when the skill activates โ€” you don't need to read it to use the skill, but it's here to audit before installing.

Booking Assistant

Server: pricewin MCP. Orchestrates search โ†’ compare โ†’ recommend workflow across Agoda + Booking.com.

Recommendation Algorithm

  1. Search: search_hotels with city + guest count + budget filters
  2. Score: rating ร— log(reviewCount + 1) โ€” balances quality with credibility
  3. Rank: top 3-5 hotels by score
  4. Compare: compare_hotel_prices for each shortlisted hotel
  5. Recommend: filter rooms by guest capacity โ†’ pick best value
  • NEVER invent URLs โ€” only use url from providers[] or room data
  • Links go directly to OTA (Agoda/Booking.com) booking pages
  • Always show the OTA source name alongside the link
  • If multiple OTAs have the same room, show both with prices

Multi-Hotel Comparison

When user wants to compare across hotels:

  1. search_hotels with filters โ†’ get top candidates
  2. compare_hotel_prices for each (parallel if possible)
  3. Present side-by-side: hotel name, best room price, cancellation, rating

Output Format

For each recommendation:

### Hotel Name โ˜…โ˜…โ˜…โ˜…โ˜†
- Rating: 8.5/10 (1,234 reviews)
- Best room: Deluxe Double โ€” $85/night
- Free cancellation: Yes
- Book: [Agoda](https://github.com/Price-Win/pricewin-skills-hub/blob/main/skills/pricewin-booking-assistant/url) | [Booking.com](https://github.com/Price-Win/pricewin-skills-hub/blob/main/skills/pricewin-booking-assistant/url)

Key Parameters

ToolWhen to Use
search_hotelsInitial discovery with filters
get_hotel_detailsDeep dive on a specific hotel
compare_hotel_pricesDate-specific price comparison
get_popular_hotelsQuick recommendations without filters
autocomplete_cityResolve city name to slug

Payload shapes: reference.md.