pricewin-price-comparison

作者: price-win

比較 Booking.com、Agoda、Traveloka 和 OpenTravel 上特定日期的即時酒店房價——同一物業哪個 OTA 最便宜、每房價格,以及免費取消條款。適用於比較酒店價格、查詢指定酒店的房價、詢問哪個網站更便宜,或為指定的入住/退房日期尋找最佳房價時使用。

npx skills add https://github.com/price-win/pricewin-skills-hub --skill pricewin-price-comparison

Requires the pricewin MCP server. This skill issues no network calls of its own.

Price Comparison

MCP server: pricewin. Compares live rates across Booking.com, Agoda, Traveloka (crawled) plus OpenTravel (direct API).

Comparison is something you do over the returned sources — there is no server-side compare call. Pick the entry point by what the user gave you:

User gave youTool
A city — "compare hotel prices in Da Nang"search_hotels_livepoll_search_results
A named hotel — "is Mercure Danang cheaper on Agoda or Booking?"get_ota_hotel_detail
A hotel already known to be OpenTravel direct (source: "OPENTRAVEL_DIRECT", has propertyId)get_hotel_detail

City-wide comparison

search_hotels_live returns IMMEDIATELY with a sessionId — it does not return hotels.

  1. search_hotels_live — required: city, checkIn, checkOut (YYYY-MM-DD). Optional: adults (default 2), rooms, area, hotelName, priceMin, priceMax, language
  2. Wait 5s → poll_search_results(sessionId, nights)
  3. While status is pending or partial: wait 5s and poll again — up to 18 times (90s)
  4. Present as soon as status == "partial" with hotels; keep polling silently and refine

Then compare per hotel across its sources. See pricewin-hotel-search for the full dedupe + presentation contract — do not restate it differently here.

Single named hotel

get_ota_hotel_detail — for one specific Booking.com/Agoda hotel the user named.

  • Required: checkIn, checkOut. Pass hotelName + city + queryText (verbatim user text) whenever known
  • Do NOT call search_hotels_live for a named hotel — that returns a whole-city list
  • Live crawl, ~20–60s. Say nothing about "loading" until it actually returns
  • Speed-up: if a prior search already gave you prices.booking.url, pass it as propertyUrl to skip name resolution
  • If it returns not-found under load, retry once

Returns rooms, prices, facilities, photos, reviews for that property.

OpenTravel direct properties

get_hotel_detail — only for results with source: "OPENTRAVEL_DIRECT".

  • Pass propertyId (UUID from opentravelResults[].propertyId) when available
  • hotelName + city is a fallback only for a property already confirmed as OpenTravel direct
  • Required: checkIn, checkOut. Optional: adults, children, language
  • Returns room types with roomTypeId and ratePlanId — these are what make a property bookable

⚠️ Router rule: have a propertyIdget_hotel_detail. Name only → get_ota_hotel_detail.

Cancellation terms

For OpenTravel rate plans only: get_cancellation_policy(propertyId, ratePlanId, checkInDate) → non-refundable flag, free-cancellation window, refund %, and the computed deadline.

ratePlanId comes from get_hotel_detailroomTypes[].ratePlanId. Pass checkInDate or you get no deadline. OTA hotels have no structured policy — quote whatever the crawl returned.

Presenting a comparison

  • Rank purely by price. No source gets priority, OpenTravel included
  • Show the cheapest source first, then the others underneath: Agoda $X · Booking $Y · OpenTravel $Z
  • Savings vs the next-cheapest source: (next - cheapest) / next * 100 → "Save Z%"
  • When the gap is small, prefer the free-cancellation option and say why
  • All prices USD unless the tool says otherwise. No conversion

Tool inputs and response fields: reference.md.

Security & data handling

Documentation only — no code, no dependencies, no network calls of its own. The only data sent is the comparison query (city or hotel name, dates, guests, plus queryText — the user's message verbatim), to PriceWin's hosted MCP server https://mcp.price.win/mcp (no credentials, no account). No PII, and this skill cannot book or pay for anything. Full disclosure — operator, backend provenance, exact fields per tool — in SECURITY.md.

來自 price-win 的更多技能

pricewin-deal-finder
price-win
根據指定的旅行日期和旅客人數,比較Booking、Agoda、Google Hotels和OpenTravel上的飯店價格與優惠。適用於查詢飯店價格、優惠或比較OTA費率。
pricewin-hotel-deal-finder
price-win
透過比較Booking.com、Agoda、Google Hotels和OpenTravel的即時價格,為全球任何城市和任何旅行日期尋找最便宜的酒店優惠——一條指令即可返回排名最佳性價比、最便宜和品質之選,並附直接預訂連結,全部以美元標準化。每當有人詢問酒店價格、酒店優惠、最便宜的房間或房價、最佳酒店房價、酒店價格比較,或哪個OTA更便宜時使用——例如「東京的Booking或Agoda哪個更便宜」、「幫我找一間...的酒店」
pricewin-hotel-search
price-win
即時搜尋Agoda、Booking.com、Traveloka與OpenTravel上的飯店,並提供特定日期的即時價格。當使用者需要旅遊日期的飯店價格、比較OTA或尋找房間時使用。
researchweb-scrapingapi
pricewin-flight-search
price-win
搜尋 Agoda、Trip.com 和 Traveloka 上特定航線與日期的即時航班票價——單程或來回、任何艙等,包含航空公司、時間、停靠站、飛行時長及直接預訂連結。當使用者想要查詢兩個城市之間的機票價格、機票、便宜機票或票價、比較不同航空公司的旅行日期,或規劃旅程的飛行段時使用。
researchweb-scraping
pricewin-booking-assistant
price-win
推薦飯店房間並完成真實的端到端預訂——透過付款連結(銀行 QR code、信用卡或 PayPal)預訂 OpenTravel 直營住宿,查看付款狀態、重新發送已過期的連結,或取消預訂。對於僅限 OTA 的飯店,則會退回至 Booking.com/Agoda/Traveloka 的直連連結。適用於預訂或預約飯店、取得房間推薦、支付住宿費用、查詢確認碼,或取消預訂時使用。