HotelRefund Price Tracker
Server Details
Track Agoda hotel prices for your dates, read the full price history, and find today's deals.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsget_price_historyGet price history for a trackingARead-onlyInspect
Return the recorded prices for one tracking (tracking_id): current, first, lowest and highest price, percentage change and trend since tracking started, and the time series of observed prices. A tracking created moments ago may report awaiting_first_price until its first check completes.
| Name | Required | Description | Default |
|---|---|---|---|
| tracking_id | Yes | Tracking id from track_hotel_price or list_tracked_hotels. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint=true already provided, the description adds substantial behavioral detail: it enumerates the computed fields and discloses the transient awaiting_first_price state for newly created trackings. This goes beyond the annotation and gives the agent accurate expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two focused sentences: the first front-loads the action and result fields, the second covers an important edge case. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-required-parameter, read-only tool with no output schema, the description covers what the agent needs: what is returned, the scope of the time series, and the early-life behavior. It is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% because the parameter already documents that tracking_id comes from track_hotel_price or list_tracked_hotels. The tool description adds general context but no additional parameter format, constraints, or examples beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Return the recorded prices for one tracking', and enumerates the exact result contents (current, first, lowest, highest, percentage change, trend, time series). This clearly distinguishes it from siblings that search, list, or create trackings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description establishes clear context: it operates on one existing tracking identified by tracking_id, and even notes the post-creation edge case. It does not explicitly name alternatives or say when not to use it, but the context is sufficient among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_hotel_dealsList today's hotel dealsARead-onlyInspect
List today's biggest observed hotel discounts: Agoda's live rate for a 1-night stay about two weeks ahead (2 adults, USD) compared with Agoda's own listed rate for the same room; only discounts of 5% or more are kept. Without arguments, returns the single best deal per city across major cities worldwide, biggest discount first. With city (a city name in Korean, Japanese, Chinese or English) or city_id, returns the current deals for that city (up to 6; an uncached city is fetched live at most once per 6 hours). Each deal includes booking_url, the Agoda page for that hotel and stay.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Optional city, region or airport name, e.g. "Tokyo", "도쿄", "東京". Omit for the worldwide list. | |
| limit | No | Max deals to return (default 20). | |
| city_id | No | Catalog city id from a previous search_hotels or list_hotel_deals result. Overrides city. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint and openWorldHint already set, the description goes further: only discounts >=5% are kept, uncached cities are fetched live at most once per 6 hours, no-arg calls return one best per city, and a city call caps at 6 results. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences pack the core purpose, filtering rule, argument-dependent behavior, caching, and a return-field note. It is dense but front-loaded with the most important verb+resource, and no sentence is filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the three optional params, the schema descriptions, and the safety annotations, the description covers input modes, defaults and limiting, caching, and at least the key return field (booking_url). With no output schema, a fuller field-by-field return list would be nice, but nothing needed to invoke the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3; the description adds value by specifying the no-argument world list behavior, the up-to-6 cap for city calls, the live-fetch/caching rule, and booking_url in results. It doesn't need to restate the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource ('List today's biggest observed hotel discounts') and immediately fixes the comparison method (Agoda live rate vs Agoda's own listed rate, 5% threshold). This is enough to distinguish it from siblings like search_hotels or list_tracked_hotels, even without naming them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear invocation context: omit arguments for the worldwide one-best-per-city list, pass city or city_id for up to 6 current deals, and city_id overrides city. It doesn't explicitly name sibling alternatives or state when not to use the tool, so it isn't a perfect 5, but the conditions are unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tracked_hotelsList publicly tracked hotelsARead-onlyInspect
List the hotels currently being tracked (all trackings are public), with current price, change since tracking started, stay dates and per-item booking_url / track_page_url, sorted with the biggest price drops first.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (default 20). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true; the description adds useful behavioral context: all trackings are public, results are sorted by biggest price drops first, and each item includes price, change, stay dates, and URLs. This goes beyond the schema and annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, information-dense sentence that front-loads the main action and scope, then efficiently lists the returned fields and sorting behavior. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one optional parameter and a clear read-only operation. The description covers what is returned, the sorting rule, and the public nature of the data, which is sufficient given the absence of an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There is only one optional parameter, limit, and the schema already documents it with a default and valid range. The description adds no new meaning to the parameter, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List') and a clear resource ('hotels currently being tracked'), plus the exact fields returned and the sort order. It is easy to distinguish from siblings like search_hotels or list_hotel_deals because it is specifically about tracked hotels.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the use case: retrieving currently tracked hotels rather than searching all hotels or listing deals. It does not explicitly name alternatives or exclusion conditions, but the scope is unambiguous enough for an agent to select it correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_hotelsSearch cities and hotelsARead-onlyInspect
Search HotelRefund's hotel catalog. Resolves a city, region or airport name (Korean, Japanese, Chinese or English) to the best-matching catalog city and lists hotels there, each with the agoda_hotel_id that track_hotel_price requires. If several cities match, other_city_matches lists them — pass one of their city_id values (instead of city) to search that city.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City, region or airport name, e.g. "Sapporo", "삿포로", "札幌". Required unless city_id is given. | |
| hotel | No | Optional hotel-name filter within the city, e.g. "Hilton", "힐튼". Omit to list notable hotels. | |
| limit | No | Max hotels to return (default 8). | |
| city_id | No | Catalog city id from a previous result (other_city_matches). Overrides city. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses non-obvious behavior: it resolves to the 'best-matching' catalog city, returns other_city_matches on ambiguity, and requires passing city_id to switch searches. It also explains the output's key linkage to track_hotel_price. This gives the agent accurate expectations beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. It front-loads the primary purpose, then packs the disambiguation rule and downstream integration into a single dense but readable second sentence.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only search tool with 100% schema coverage and no output schema, the description covers the essential operational details: input forms, language support, matching behavior, ambiguity resolution, and the significance of the returned agoda_hotel_id. Nothing critical is missing for an agent to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3, but the description adds cross-parameter meaning: city_id comes from a previous other_city_matches result and overrides city, and the hotel id returned is what track_hotel_price requires. This relationship guidance is not fully evident from the parameter descriptions alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Search HotelRefund's hotel catalog'), a clear resource, and the result behavior: resolving a city/region/airport name into a catalog city and listing hotels. It also differentiates itself from siblings by naming the agoda_hotel_id that track_hotel_price requires, making its role in the workflow unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives concrete guidance on the disambiguation flow: when several cities match, use one of their city_id values instead of city. It also implies this tool is the prerequisite lookup before track_hotel_price. It does not explicitly enumerate when to prefer list_hotel_deals or get_price_history, but the resource and workflow relationship are clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
track_hotel_priceStart tracking a hotel priceAIdempotentInspect
Start free, anonymous, public price tracking of one hotel (agoda_hotel_id from search_hotels) for one stay (check_in to check_out, YYYY-MM-DD). The Agoda price is then checked automatically several times a day and every observed price is recorded. If the same hotel and dates are already tracked, the existing tracking is returned instead of a duplicate. The response includes booking_url (the Agoda page for this hotel via a HotelRefund redirect) and track_page_url (the public price-history page).
| Name | Required | Description | Default |
|---|---|---|---|
| check_in | Yes | Check-in date, YYYY-MM-DD (today up to 540 days ahead). | |
| currency | No | Optional ISO currency for recorded prices: KRW, JPY, USD, EUR, TWD, HKD, CNY, SGD, THB, GBP, AUD or VND. Defaults by language. | |
| language | No | Optional locale for the tracked rate: ko-kr, ja-jp, en-us, zh-cn, zh-tw or zh-hk (default en-us). | |
| check_out | Yes | Check-out date, YYYY-MM-DD (after check_in, stay of 60 nights or less). | |
| agoda_hotel_id | Yes | Hotel id from search_hotels. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes well beyond the annotations by explaining what happens after invocation: the price is checked several times per day, every observed price is recorded, duplicates return the existing tracking, and the response contains specific URLs. The idempotentHint is explicitly supported by the deduplication language, and no contradiction exists with readOnlyHint=false or destructiveHint=false.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two dense sentences carry all essential information with no filler. The action, constraints, behavioral consequences, idempotency, and key response fields are all covered economically and in a logical order.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there is no output schema, the description rightly names the two most important response fields, booking_url and track_page_url. It also covers the core lifecycle behavior (automatic checks and deduplication). It leaves out minor details such as how to later reference the created tracking, but nothing essential to invoking the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the formal parameters are already fully documented. The description adds context about 'one stay' and the YYYY-MM-DD format, but it does not materially deepen the meaning of currency, language, or the hotel id beyond what the schema already states.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb-resource pair ('Start ... price tracking of one hotel') and clearly states the scope: one agoda_hotel_id, one stay, and automatic price checks. It inherently distinguishes this tool from siblings like list_tracked_hotels or get_price_history by framing this as the action that initiates tracking rather than reading or listing it.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool: after obtaining agoda_hotel_id from search_hotels, for a specific date range. The duplicate-return behavior also implies a sensible 'use it even if already tracked' guideline, but it does not explicitly name alternatives or state when another sibling should be used instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Live Booking.com hotel prices, plus per-country pricing for rate-parity monitoring.
Best-time-to-book verdicts, live last-minute hotel deals, and city price calendars, from data.
Neutral hotel & stay price comparison for AI agents: live prices from 16+ booking sites. No signup.
Travel & commerce intelligence for AI agents: search, book & price-track hotels, events, retail.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceProvides live hotel room rates, availability, and guest reviews from Agoda, enabling searches by destination and dates, property details, and structured review data.
- AlicenseNot gradedqualityBmaintenanceBook hotels worldwide — search, price, prebook & book across 249 countries. 65 tools for hotel search, flights, loyalty, analytics. Zero API keys needed. at best prices for hotels 3 M+ property221MIT
- AlicenseNot gradedqualityCmaintenanceEnables verified, bookable hotel price checking with tax-inclusive totals, OTA tax status flags, and durable Booking.com fallback links for budget travel planning.MIT

RollingGo Hotel MCPofficial
AlicenseNot gradedqualityBmaintenanceEnables AI agents to search, compare, and book hotels worldwide through natural language, with real-time pricing and availability, plus price monitoring and order management.14MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a distinct role: search_hotels finds hotels, track_hotel_price starts tracking, list_tracked_hotels shows active trackings, get_price_history details one tracking, and list_hotel_deals surfaces discounts. There is no meaningful overlap or ambiguity.
All tool names follow the same imperative verb + noun pattern with snake_case: get_price_history, list_hotel_deals, list_tracked_hotels, search_hotels, track_hotel_price. The naming is predictable and consistent.
Five tools is well-scoped for a hotel price tracker: hotel discovery, tracking creation, tracking listing, price history retrieval, and deal browsing. Each tool earns its place without redundancy.
The core workflow is well covered: search, track, list, and inspect history, plus a deals view. The main gap is the lack of an explicit way to stop/delete a tracking or update tracking parameters, though this may be intentionally unsupported for anonymous public trackings.