Booking.com Hotel Search (Live Prices)
Server Details
Live Booking.com hotel prices, plus per-country pricing for rate-parity monitoring.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mtnrabi/travel-agent-skills
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 2 of 2 tools scored.
The two tools have clearly distinct purposes: one searches for multiple hotels in a destination, while the other looks up a specific named hotel. There is no overlap or ambiguity in their use cases.
Both tool names follow a consistent verb_noun pattern: (find/search)_(hotel/hotels). The naming is clear, predictable, and easy to understand for an agent.
With only 2 tools, the server is slightly under-scoped, but the tools cover the core search and lookup needs effectively. More specialized tools (e.g., for comparing prices across hotels) could be added, but the current count is reasonable for a focused hotel search server.
The server provides basic hotel search and lookup, but lacks tools for filtering, sorting, or booking. While the core listing and pricing functionality is present, users cannot refine results or proceed with a booking, leaving notable gaps for a complete hotel search experience.
Available Tools
2 toolsfind_hotel_by_nameFind one hotel by nameARead-onlyInspect
Get availability and pricing for one named property. Input: the hotel name a person would type (adding the city helps when a chain has many properties) plus check-in and check-out dates -- no internal property ID needed, the resolution is done for you. Returns the property's price, review score, room type and a booking link. Use it to check one specific hotel, or to track a single property's price over time.
price_as_seen_from prices the stay as a shopper in that country would see it, which is what makes rate-parity checks possible.
Rates go stale within minutes: never reuse an earlier result.
| Name | Required | Description | Default |
|---|---|---|---|
| adults | No | ||
| children | No | ||
| currency | No | ||
| hotel_name | Yes | ||
| checkin_date | Yes | ||
| checkout_date | Yes | ||
| price_as_seen_from | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes well beyond annotations by disclosing critical behavioral traits: 'Rates go stale within minutes: never reuse an earlier result.' This is a time-sensitive constraint not captured by readOnlyHint or other annotations. It also explains the semantic of price_as_seen_from, which is not in the schema. 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?
The description is front-loaded with the core purpose in the first sentence. It is structured into clear paragraphs covering usage, special parameter, and staleness warning. It is slightly verbose but each sentence adds value. Could be tightened by removing redundant phrases like 'Input: the hotel name a person would type' but overall efficient.
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 tool has 7 parameters (3 required), an output schema, and a sibling tool, the description covers the main workflow: how to input hotel name, dates, and the special price_as_seen_from parameter. It omits explanation of optional parameters adults/children/currency, but these are less critical. The staleness warning is a key completeness element. Mostly sufficient for correct agent usage.
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?
With 0% schema description coverage, the description compensates by explaining the meaning of hotel_name (adding city helps), checkin/checkout dates, and price_as_seen_from (country-specific pricing). It lacks explicit explanation for adults, children, and currency, but these are optional and partially inferable. The description adds significant value beyond 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 clearly states the tool's purpose: 'Get availability and pricing for one named property.' It specifies it handles a single hotel, distinguishes from the sibling 'search_hotels' by emphasizing 'one specific hotel' vs. general search. The verb 'get' and resource 'availability and pricing for one hotel' are precise.
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 provides clear usage context: 'Use it to check one specific hotel, or to track a single property's price over time.' It hints at when to use it versus alternatives by mentioning the sibling tool 'search_hotels' in the sibling list, though it does not explicitly state 'do not use for broad searches.' The guidance on adding city names for disambiguation adds practical value.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_hotelsSearch hotelsARead-onlyInspect
Search live hotel availability and nightly prices for a destination and date range. Input: a free-text destination the way a person would say it ("Rome", "Tokyo Shibuya"), plus check-in and check-out dates. Returns each property's price, review score, room type, location and a booking link.
Set price_as_seen_from to a two-letter country code to price the same stay the way a shopper resident in that country would see it -- that is how rate-parity and geo-pricing differences are found, and no other travel tool here can do it.
Rates go stale within minutes: never reuse an earlier result, search again.
| Name | Required | Description | Default |
|---|---|---|---|
| adults | No | ||
| filters | No | ||
| children | No | ||
| currency | No | ||
| destination | Yes | ||
| checkin_date | Yes | ||
| checkout_date | Yes | ||
| budget_per_night | No | ||
| price_as_seen_from | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral value beyond annotations by warning that rates go stale within minutes and advising against reuse. Annotations already mark readOnlyHint true and destructiveHint false, so the description complements this with lifecycle and data freshness info. No contradictions.
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 moderately concise: three short paragraphs. The first paragraph front-loads core purpose, inputs, and outputs. The second adds a unique parameter. The third warns about staleness. Each sentence adds value; no redundancy. Could be slightly tighter but is well-structured.
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 9 parameters and an output schema, the description covers the essential use case: searching by destination/date, highlights the unique geo-pricing parameter, and warns about data staleness. It describes output fields adequately. While it omits details on some optional parameters (filters, budget), the schema and output schema fill partial gaps. Overall sufficient for primary use.
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?
With 0% schema description coverage, the description must compensate. It explains destination (free-text), checkin/checkout dates, and the special price_as_seen_from parameter (two-letter country code). However, it does not explain adults, children, currency, filters, or budget_per_night, leaving gaps for those optional but potentially important parameters.
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 clearly states the tool's function: searching live hotel availability and nightly prices by destination and date range. It explicitly distinguishes from the sibling 'find_hotel_by_name' by implying this is for general searches and by highlighting a unique capability (price_as_seen_from) that no other tool has.
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 provides clear context on when to use the tool (for live hotel searches), input format (free-text destination), and important caveats (rates go stale, do not reuse). It does not explicitly say when not to use it (e.g., for specific hotel names), but the sibling tool name provides some implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- Alicense-qualityBmaintenanceBook 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+ property91MIT
- Alicense-qualityCmaintenanceEnables verified, bookable hotel price checking with tax-inclusive totals, OTA tax status flags, and durable Booking.com fallback links for budget travel planning.MIT
- Flicense-qualityDmaintenanceEnables real-time hotel search and pricing data from Booking.com for AI agents and Claude.32

RollingGo Hotel MCPofficial
Alicense-qualityBmaintenanceEnables AI agents to search, compare, and book hotels worldwide through natural language, with real-time pricing and availability, plus price monitoring and order management.4MIT