Skip to main content
Glama

Server Details

The room-level truth layer of hospitality. Verified scores for exact hotel rooms, not just hotels.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 8 of 8 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of hotel intelligence: search, details, pricing, rooms, nearby places, reviews, and room display. The only potential overlap is between get_hotel and ask_about_hotel, but the description clearly directs agents to use get_hotel first and ask only for supplementary questions.

Naming Consistency5/5

All tool names follow a consistent verb-first snake_case pattern (e.g., get_hotel_pricing, search_hotels, show_rooms). The verbs vary (get, ask, search, show) but the pattern is uniform and readable, with no mixed conventions.

Tool Count5/5

With 8 tools, the server is well-scoped for hotel intelligence. Each tool covers a necessary function without redundancy, staying comfortably within the ideal 3-15 range.

Completeness4/5

The tool surface covers the core hotel intelligence workflow: search, details, pricing, rooms, nearby, reviews, and presentation. The only notable gap is the absence of an actual booking or availability tool, but the server's purpose appears to be informational rather than transactional, so this is a minor omission.

Available Tools

12 tools
add_special_requestAdd a special requestInspect

Add a special request to one of your bookings (e.g. extra pillows, late checkout, anniversary celebration). Requires connecting your Roomza account.

ParametersJSON Schema
NameRequiredDescriptionDefault
requestYesThe special request to add
booking_idYesThe booking ID to add the request to (get this from get_my_trips)

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYes
messageYes
ask_about_hotelAsk about a hotelA
Read-onlyIdempotent
Inspect

Ask a specific question about a hotel that standard data may not answer. Uses AI with web search to find the answer. Examples: 'Does this hotel have Eiffel Tower views?', 'Is there a rooftop bar?', 'How far is it from the airport?'. Try get_hotel first; use this only when that data doesn't answer the question.

ParametersJSON Schema
NameRequiredDescriptionDefault
hotel_idYesHotel UUID
questionYesThe specific question about the hotel

Output Schema

ParametersJSON Schema
NameRequiredDescription
answerYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and openWorldHint=true, so the description doesn't need to cover safety. However, it adds important behavioral context by stating 'Uses AI with web search to find the answer,' revealing that results may come from external sources and are not limited to local data. This goes beyond the annotation's basic flag and sets appropriate expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each earning its place: purpose, examples, and usage guidance. It is front-loaded with the core function, then provides concrete examples and explicit alternatives. No redundancy or vague filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 params, no output schema, read-only, open-world), the description covers the key aspects: what it does, when to use it, and what kind of questions it can answer. It doesn't mention potential limitations like 'may return no answer' or 'may be slow,' but the openWorldHint and examples provide sufficient context for an AI agent to use it effectively. A small gap is the lack of explicit return format, but it's not critical for this question-answering tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema covers both parameters with concise descriptions (100% coverage), so the baseline is 3. The description adds value by providing example questions that illustrate the appropriate format and type of content for the 'question' parameter, going beyond the schema's generic description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool's function: 'Ask a specific question about a hotel that standard data may not answer.' It uses a specific verb ('Ask') and resource ('hotel'), and explicitly differentiates from sibling tools by noting that it handles questions beyond standard data. The examples further clarify its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit usage direction: 'Try get_hotel first; use this only when that data doesn't answer the question.' This gives a clear when-to-use and when-not-to-use, naming the alternative tool, which is ideal for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_hotelGet hotel detailsA
Read-onlyIdempotent
Inspect

Get full details for a hotel including: Roomza Truth summary, score breakdown, top strengths, hotel character (type, vibes, best-for), nearby landmarks with distances, neighborhood, awards, amenities, and review highlights from the open web. Use hotel name, slug, or UUID as the identifier.

ParametersJSON Schema
NameRequiredDescriptionDefault
identifierYesHotel name, slug, or UUID

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
hotelYesnull when the hotel was not found
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is known. The description adds context about the breadth of returned data, including 'review highlights from the open web,' but does not disclose behaviors like result size limits, error conditions, or whether the data is cached/aggregated. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is notably detailed but efficiently front-loaded with 'Get full details for a hotel including:' followed by a compact enumeration. It is a single long sentence, but every listed item adds useful information about the tool's scope, with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description does an excellent job of enumerating all the major categories of returned information. It also identifies the input requirement clearly. This is complete enough for an agent to understand what this tool provides and when it is the right choice.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the single parameter, and the schema already explains 'Hotel name, slug, or UUID.' The description repeats this exact guidance, adding no new meaning beyond what structured data provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('hotel details') and enumerates a clear set of data points (Roomza Truth summary, score breakdown, strengths, character, landmarks, neighborhood, awards, amenities, review highlights). This distinguishes it from sibling tools like get_hotel_pricing or get_hotel_rooms, which focus on narrower aspects.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly conveys that this tool is for fetching full hotel details and specifies the accepted identifier formats. It does not explicitly mention when to prefer sibling alternatives, but the scope is clear enough that an agent can infer this is the comprehensive details endpoint.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_hotel_pricingGet room ratesA
Read-onlyIdempotent
Inspect

Get public room rates for a hotel (the hotel's own public rate; booking on Roomza never costs more). Pass check_in and check_out dates (YYYY-MM-DD) to get nightly from-prices per room type. Without dates, returns the hotel's typical nightly from-price. No booking links; to price and book an exact room, use secure_room.

ParametersJSON Schema
NameRequiredDescriptionDefault
check_inNoCheck-in date in YYYY-MM-DD format (defaults to today)
hotel_idYesHotel UUID
check_outNoCheck-out date in YYYY-MM-DD format (defaults to tomorrow)

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteYes
foundYesfalse when the hotel is unknown
nightsYes
checkInYes
checkOutYes
currencyYes
hotelNameYes
roomTypesYesPer-room-type from-prices when dates were given and live rates exist
typicalNightlyFromYesHotel-level typical nightly from-price in dollars
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the read-only nature is known. The description adds meaningful behavioral details beyond annotations: it returns public rates only, behaves differently with/without dates (nightly vs. typical rate), and explicitly notes no booking links. This adds context without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with the core purpose, followed by usage conditions and a clear exclusion/alternative. Every sentence earns its place with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only pricing tool with 3 parameters and no output schema, the description covers the essential invocation scenarios, default behavior, and what not to expect (booking links). It gives sufficient context for an agent to select and call the tool correctly, including naming the alternative for booking.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so parameters are documented. The description enriches semantics by specifying the YYYY-MM-DD format for dates and explaining how the presence/absence of dates alters the output (nightly per-room-type prices vs. typical nightly from-price). This goes beyond the bare schema field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('public room rates for a hotel'), clearly distinguishing it from booking-related tools like secure_room. It also implicitly differentiates from sibling tools like get_hotel_rooms by focusing on pricing rather than room details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit context on when to use the tool: with or without dates, and states that booking links are not included. It names secure_room as the alternative for exact pricing and booking, giving the agent clear decision-making guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_hotel_roomsList hotel roomsA
Read-onlyIdempotent
Inspect

List rooms for a hotel with individual Roomza scores, bed type, view, and floor. Pass room_number to look up a specific room.

ParametersJSON Schema
NameRequiredDescriptionDefault
hotel_idYesHotel UUID (get this from search_hotels or get_hotel)
room_numberNoLook up a specific room by number, e.g. "434"

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
roomsYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds value by detailing the return fields (Roomza scores, bed type, view, floor) and the optional specific-room behavior. No contradictions 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with purpose and key details. No redundant or vague wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a simple listing tool with two parameters and no output schema, the description adequately explains what is returned and the optional lookup behavior. It covers the essential information for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the description does not need to add parameter details. It reinforces the room_number usage but does not go beyond the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists rooms for a hotel with specific details (Roomza scores, bed type, view, floor), using a specific verb 'List' and identifying the resource. It also notes the optional room_number lookup, which differentiates it from generic listing siblings like show_rooms.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives such as show_rooms or get_hotel_pricing. The description only explains the function and parameter usage, not tool selection criteria or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_my_preferencesYour preferences
Read-onlyIdempotent
Inspect

Get your saved room preferences, standing requests, and loyalty accounts on Roomza. Requires connecting your Roomza account.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
preferencesYes
travelCardsYes
loyaltyProgramsYes
standingRequestsYes
get_my_tripsYour trips
Read-onlyIdempotent
Inspect

Look up your upcoming and past hotel bookings/trips on Roomza. Requires connecting your Roomza account.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
pastYes
countYes
upcomingYes
get_nearbyGet nearby places and eventsA
Read-onlyIdempotent
Inspect

Get nearby places (restaurants, bars, attractions, parks) and upcoming events near a hotel. Optionally filter events to a travel window with start_date / end_date.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_dateNoTravel end date YYYY-MM-DD -- filters events to this window
hotel_idYesHotel UUID (get this from search_hotels or get_hotel)
start_dateNoTravel start date YYYY-MM-DD -- filters events to this window

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
eventsYes
placesYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint=true in annotations, the read-only behavior is already disclosed. The description adds the categories of places and event filtering, but does not reveal other behavioral aspects like output format, pagination, or time-related edge cases.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the main purpose, then the optional filter. No wasted words or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only tool with no output schema, the description covers what is returned (places and events) and the filtering option. It lacks details like distance radius or time horizon, but remains sufficient for the tool's simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, providing baseline. The description adds meaning by explaining start_date/end_date as a 'travel window' for filtering events, and 'near a hotel' provides context for hotel_id. This goes beyond the schema's field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Get') and resource ('nearby places and events') near a hotel. It also lists example place types (restaurants, bars, attractions, parks), distinguishing it from sibling tools focused on hotel details, pricing, or search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (near a hotel) and optional event filtering by travel window. However, it does not explicitly mention when to use this tool over siblings or when not to use it, so it falls short of the highest tier.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_recent_reviewsGet guest reviewsA
Read-onlyIdempotent
Inspect

Get verified guest reviews for a hotel, including comments and insider tips. Pass room_number to get reviews for a specific room.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of reviews (default 5)
hotel_idYesHotel UUID
room_numberNoFilter reviews to a specific room number, e.g. "434"

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteYesSet when no reviews are returned, e.g. unknown room
countYes
reviewsYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is clear. The description adds context about content (comments, insider tips) and room filtering, but does not disclose ordering, pagination, default limits, or error behavior. Adequate but not deeply transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no redundant words. It front-loads the core purpose and then adds the room filter detail. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with full schema coverage and a readOnlyHint annotation, the description provides enough to understand purpose and filtering. It lacks explicit mention of limit behavior or return format, but the schema covers the limit, and the tool is straightforward. Slightly above minimal.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for all three parameters, providing clear descriptions for limit, hotel_id, and room_number. The description's mention of room_number reinforces but doesn't add new semantic meaning beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves 'verified guest reviews for a hotel, including comments and insider tips,' using a specific verb and resource. It distinguishes itself from sibling tools like pricing, rooms, and search by focusing on reviews, and the optional room filter adds precision.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The implied use case is obvious: when you need guest reviews for a hotel. However, the description does not explicitly mention when not to use it or name alternatives, relying on sibling context. It provides a clear filter hint (room_number) but lacks explicit exclusionary guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_hotelsSearch hotelsA
Read-onlyIdempotent
Inspect

Search Roomza's hotel database by name, city, keyword, or natural language query. Understands hotel types (boutique, resort, luxury), vibes (romantic, trendy, quiet), traveler types (couples, families, solo), neighborhoods, and nearby landmarks. Example queries: 'boutique hotels in SoHo', 'romantic resort near the Eiffel Tower', 'pet-friendly hotel in Seattle'. Returns hotels with Roomza scores, tags, and landmark distances.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoNarrow results to a specific city
limitNoMax results (default 10)
queryYesHotel name, city, or keyword

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteYesSearch note, e.g. a nearby-city fallback explanation
countYesNumber of hotels returned
hotelsYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds meaningful behavioral context: it understands hotel types, vibes, traveler types, neighborhoods, and landmarks, and returns hotels with scores, tags, and distances. This goes beyond annotations and helps the agent predict tool behavior, though it omits details like pagination or failure behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded: the first sentence states the core function, followed by capabilities and concrete examples. Every sentence adds useful information, and the examples are particularly valuable for an AI agent to understand query formats. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete for a search tool with a simple schema: it explains return values (hotels with scores, tags, landmark distances), query capabilities, and example use cases. It does not explain limit/city handling or pagination, but those are covered by the schema and are not critical for a search operation. Given no output schema, the return description is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description significantly enriches the 'query' parameter by explaining it supports natural language and specific dimensions (types, vibes, traveler types, landmarks). This goes beyond the schema's simple 'Hotel name, city, or keyword' and adds valuable guidance for formulating queries.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches Roomza's hotel database, with specific verbs and scope. It distinguishes from siblings by focusing on search across the database via name, city, keyword, or natural language, as opposed to getting specific hotel details or nearby places.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: when searching hotels by various criteria, with examples showing natural language queries. It does not explicitly exclude alternatives or mention when to use get_hotel or get_nearby, but the examples and phrasing imply the appropriate use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

secure_roomPrice and lock a roomInspect

Price and lock an exact room for specific dates with Room Lock. Returns the live price, cancellation policy, and a secure booking link with the room preselected. Requires connecting your Roomza account.

ParametersJSON Schema
NameRequiredDescriptionDefault
guestsNoGuest count (default 2)
room_idYesRoom UUID (from show_rooms or get_hotel_rooms)
check_inYesCheck-in date, YYYY-MM-DD
check_outYesCheck-out date, YYYY-MM-DD

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesfalse = the request could not be quoted; see message
guestsYes
nightsYes
roomIdYes
checkInYes
hotelIdYes
messageYesSet when ok is false
bookableYestrue when a live bookable rate was found
checkOutYes
currencyYes
rateNameYes
hotelNameYes
bookingUrlYesSecure checkout link with the room preselected; payment happens only there
dueAtHotelYesAdditional amount due at the hotel, dollars
publicRateYesHotel's public rate in dollars, for comparison
roomNumberYes
totalTodayYesTotal charged today in dollars
trackRecordYesHotel's room-request honor track record
cancellationYes
indicativeOnlyYestrue when the price is from public listings, not bookable
show_roomsShow roomsA
Read-onlyIdempotent
Inspect

REQUIRED whenever you present rooms. Whenever you are about to mention, recommend, or describe one or more specific rooms to the user, you MUST call this tool with those room UUIDs INSTEAD of writing the rooms in text. This is mandatory even when there is only ONE matching room — show it as a single hero card, never describe a lone room in prose. Call this BEFORE writing any prose about the rooms; the cards must appear first, then a brief summary. Pass room UUIDs (from get_hotel_rooms or search results) in ranked order, best first, 1 to 8 rooms. ALWAYS pass check_in and check_out when you know the user's dates: card prices are then for those exact dates. Without dates, cards show a typical from-price that can differ a lot from any specific dates. Each card shows photo, Roomza score, view, bed, and price. NEVER ask the user whether they want to see cards or images — just call this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
check_inNoCheck-in date YYYY-MM-DD. Pass whenever the user's dates are known so card prices match those dates.
room_idsYesRoom UUIDs to display, in ranked order (best first). 1-8 rooms.
check_outNoCheck-out date YYYY-MM-DD.

Output Schema

ParametersJSON Schema
NameRequiredDescription
roomsYes
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true. The description adds valuable behavioral context: renders cards with photo, Roomza score, view, bed, price; single room shows as hero card; cards must appear first. 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a dense block of imperative instructions with no filler. Each sentence contributes operational guidance (when, how, constraints, timing, prohibitions), and the core requirement is front-loaded with 'REQUIRED whenever you present rooms.'

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema, the description covers all necessary context: trigger, source of parameters, count limits, ordering, UI content, timing, and user interaction rules. An agent has everything needed to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds the source of UUIDs ('from get_hotel_rooms or search results') which is not in the schema, and reinforces the ordering requirement. This provides meaningful value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: presenting rooms as cards to the user. It distinguishes it from sibling tools like get_hotel_rooms by explicitly saying 'INSTEAD of writing the rooms in text' and emphasizing this is for display, not retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit, mandatory usage instructions: must call whenever presenting rooms, call before any prose, pass ranked UUIDs, 1-8 rooms, and never ask the user. It clearly implies when not to use (when not presenting rooms) and removes ambiguity about alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    The owner-verified local business data + service & menu-price layer for AI agents. Owner-authored business profiles where every response carries provenance — verification level, completeness score, freshness timestamps, and upstream sources. * Search & profiles — find businesses by name, category, city, or geo-radius; full profiles with contacts, hours, media, ratings. * Price layer
  • F
    license
    -
    quality
    D
    maintenance
    Provides cited product-review verdicts synthesised from real user voices across multiple platforms, enabling AI agents to query live opinions with ratings, pros/cons, and confidence tiers.
  • A
    license
    A
    quality
    D
    maintenance
    URL intelligence for AI agents. One URL in, structured security and data quality signals out across 7 dimensions. 13 tools, risk score 0-100 with 23 configurable weights.
    16
    160
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources