Google Hotel Prices
Server Details
Search hotel prices, get best overall and best direct price in structured response. Get your developer token at https://Infoseek.ai/mcp
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Changed
get_hotel_prices21 fields changed- changed
Input schema / properties / hotel_check_in_date_yyyy_mm_dd / descriptionPrevious value: -"Required hotel check-in date in YYYY-MM-DD."New value: +"Required shared hotel check-in date in YYYY-MM-DD." - changed
Input schema / properties / hotel_check_out_date_yyyy_mm_dd / descriptionPrevious value: -"Required hotel check-out date in YYYY-MM-DD."New value: +"Required shared hotel check-out date in YYYY-MM-DD." - removed
Input schema / properties / hotel_cityRemoved value: -{ - "description": "Required hotel city.", - "type": "string" -} - removed
Input schema / properties / hotel_countryRemoved value: -{ - "description": "Optional hotel country.", - "type": "string" -} - changed
Input schema / properties / hotel_guest_count / descriptionPrevious value: -"Optional hotel guest count. Defaults to 2."New value: +"Optional shared hotel guest count. Defaults to 2." - removed
Input schema / properties / hotel_nameRemoved value: -{ - "description": "Required hotel name.", - "type": "string" -} - removed
Input schema / properties / hotel_stateRemoved value: -{ - "description": "Optional hotel state or province.", - "type": "string" -} - removed
Input schema / properties / hotel_streetRemoved value: -{ - "description": "Optional hotel street address.", - "type": "string" -} - added
Input schema / properties / hotelsAdded value: +{ + "description": "Required hotels to check within the shared stay window. Max 3 per request. Make multiple requests if more are needed", + "items": { + "additionalProperties": false, + "properties": { + "hotel_city": { + "description": "Required hotel city.", + "type": "string" + }, + "hotel_country": { + "description": "Optional hotel country.", + "type": "string" + }, + "hotel_name": { + "description": "Required hotel name.", + "type": "string" + }, + "hotel_state": { + "description": "Optional hotel state or province.", + "type": "string" + }, + "hotel_street": { + "description": "Optional hotel street address.", + "type": "string" + } + }, + "required": [ + "hotel_name", + "hotel_city" + ], + "type": "object" + }, + "maxItems": 3, + "minItems": 1, + "type": "array" +} - changed
Input schema / requiredPrevious value: -[ - "hotel_name", - "hotel_city", - "hotel_check_in_date_yyyy_mm_dd", - "hotel_check_out_date_yyyy_mm_dd" -]New value: +[ + "hotel_check_in_date_yyyy_mm_dd", + "hotel_check_out_date_yyyy_mm_dd", + "hotels" +] - added
Output schema / properties / cardsAdded value: +{ + "items": { + "type": "object" + }, + "type": "array" +} - added
Output schema / properties / countAdded value: +{ + "type": "integer" +} - added
Output schema / properties / meta / properties / hotel_countAdded value: +{ + "type": "integer" +} - removed
Output schema / properties / meta / properties / modelRemoved value: -{ - "type": "string" -} - changed
Output schema / properties / meta / requiredPrevious value: -[ - "handle", - "display_name", - "status", - "model" -]New value: +[ + "handle", + "display_name", + "status", + "hotel_count" +] - added
Output schema / properties / results / itemsAdded value: +{ + "type": "object" +} - removed
Output schema / properties / results / propertiesRemoved value: -{ - "hotel_link": { - "type": "string" - } -} - removed
Output schema / properties / results / requiredRemoved value: -[ - "hotel_link" -] - changed
Output schema / properties / results / typePrevious value: -"object"New value: +"array" - added
Output schema / properties / searchAdded value: +{ + "type": "object" +} - changed
Output schema / requiredPrevious value: -[ - "results", - "meta" -]New value: +[ + "search", + "cards", + "results", + "count", + "meta" +]
2 tool updates
- Changed
get_hotel_prices18 fields changed- added
Input schema / properties / hotel_check_in_date_yyyy_mm_ddAdded value: +{ + "description": "Required hotel check-in date in YYYY-MM-DD.", + "pattern": "^\\d{4}-\\d{2}-\\d{2}$", + "type": "string" +} - added
Input schema / properties / hotel_check_out_date_yyyy_mm_ddAdded value: +{ + "description": "Required hotel check-out date in YYYY-MM-DD.", + "pattern": "^\\d{4}-\\d{2}-\\d{2}$", + "type": "string" +} - added
Input schema / properties / hotel_cityAdded value: +{ + "description": "Required hotel city.", + "type": "string" +} - added
Input schema / properties / hotel_countryAdded value: +{ + "description": "Optional hotel country.", + "type": "string" +} - added
Input schema / properties / hotel_guest_countAdded value: +{ + "default": 2, + "description": "Optional hotel guest count. Defaults to 2.", + "maximum": 16, + "minimum": 1, + "type": "integer" +} - removed
Input schema / properties / hotel_linkRemoved value: -{ - "description": "Required final Google Maps or Google Hotels hotel URL with query_place_id and booking parameters such as check-in, check-out, and guests.", - "pattern": "^https://", - "type": "string" -} - added
Input schema / properties / hotel_nameAdded value: +{ + "description": "Required hotel name.", + "type": "string" +} - added
Input schema / properties / hotel_stateAdded value: +{ + "description": "Optional hotel state or province.", + "type": "string" +} - added
Input schema / properties / hotel_streetAdded value: +{ + "description": "Optional hotel street address.", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "hotel_link" -]New value: +[ + "hotel_name", + "hotel_city", + "hotel_check_in_date_yyyy_mm_dd", + "hotel_check_out_date_yyyy_mm_dd" +] - added
Output schema / properties / meta / properties / modelAdded value: +{ + "type": "string" +} - removed
Output schema / properties / meta / properties / seller_countRemoved value: -{ - "type": "integer" -} - changed
Output schema / properties / meta / requiredPrevious value: -[ - "handle", - "display_name", - "status", - "seller_count" -]New value: +[ + "handle", + "display_name", + "status", + "model" +] - removed
Output schema / properties / results / properties / best_direct_priceRemoved value: -{ - "type": [ - "object", - "null" - ] -} - removed
Output schema / properties / results / properties / best_overall_priceRemoved value: -{ - "type": [ - "object", - "null" - ] -} - removed
Output schema / properties / results / properties / final_google_search_urlRemoved value: -{ - "type": [ - "string", - "null" - ] -} - added
Output schema / properties / results / properties / hotel_linkAdded value: +{ + "type": "string" +} - changed
Output schema / properties / results / requiredPrevious value: -[ - "best_overall_price", - "best_direct_price", - "final_google_search_url" -]New value: +[ + "hotel_link" +]
- Removed
lookup_hotel_link
2 tool updates
- First observed
get_hotel_prices - First observed
lookup_hotel_link
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, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.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
Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.
Search MCP servers, agent skills and APIs for travel: hotel ID mapping, rates, rooms.
Hotel Intelligence MCP — search, price compare, area guides, price calendars via Google Hotels
Google Hotels prices, ratings, reviews, and photos via an Apify Actor, hosted MCP.
Related MCP Servers
- FlicenseAqualityBmaintenanceEnables AI assistants to search hotel rooms by number of nights within a flexible date range, returning real prices and the cheapest deals with booking links. It also supports city resolution, hotel listing, and offer details for external booking completion.4-

DIDA Hotel MCPofficial
AlicenseNot gradedqualityBmaintenanceEnables AI agents to search, compare, and book hotels with real-time pricing and availability, supporting multiple location types, star ratings, and price filters.8MIT- 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+ property71MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search for hotels globally via the MCP protocol, supporting filters like city, landmark, star rating, and distance.2MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Only one tool exists, so there is no ambiguity. An agent cannot confuse it with any other tool.
With a single tool, naming is consistent by default. The name 'get_hotel_prices' is clear and follows a verb_noun pattern.
A single tool is borderline appropriate for a focused server, but it feels thin compared to typical MCP servers that offer more operations within the domain.
The server delivers exactly what it promises—hotel prices for given stays—but lacks any supporting tools for searching hotels, managing queries, or handling variations in dates, which are natural extensions.