Skip to main content
Glama

Server Details

Best-time-to-book verdicts, live last-minute hotel deals, and city price calendars, from data.

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 3.6/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool addresses a distinct aspect: booking advice, calendar events, last-minute deals, and city listing. No functional overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (get_*, list_*), making them predictable.

Tool Count5/5

With 4 tools, the server is compact yet covers the core functionalities of a hotel booking-timing service.

Completeness5/5

The tool set provides all necessary operations for the declared domain: advice, calendar, deals, and city discovery. No obvious gaps.

Available Tools

4 tools
get_booking_adviceBest time to book adviceBInspect

Get a data-backed verdict on whether to book a hotel now or wait, for a city and stay dates. Based on tracked daily median prices.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCity name, e.g. 'Lisbon'
checkInYesCheck-in date, YYYY-MM-DD
checkOutYesCheck-out date, YYYY-MM-DD
Behavior2/5

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

No annotations provided, so description carries full burden. Mentions data source ('tracked daily median prices') but fails to disclose return format, caching, limitations (e.g., city coverage), or any side effects.

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?

Two efficient sentences with no waste, front-loaded with the core action. Could include more detail without harming conciseness.

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

Completeness2/5

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

No output schema and no annotations; the tool returns a verdict but the description does not describe the response format or what constitutes a 'verdict'. Incomplete for effective agent use.

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% with clear parameter descriptions. The tool description adds no further meaning beyond the schema, so baseline score of 3 applies.

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?

Description clearly states 'Get a data-backed verdict' with resource 'whether to book now or wait', which is distinct from siblings like get_city_calendar (calendar view) and get_last_minute_deals (deals).

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?

Implies usage for booking timing advice but lacks explicit guidance on when to use this tool versus alternatives like get_city_calendar or get_last_minute_deals.

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

get_city_calendarCity price calendarAInspect

Hot dates (events and holidays that push hotel prices up) and value windows (historically cheaper stretches) for a city in a date range.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoRange end, YYYY-MM-DD (default: one year from today)
cityYesCity name, e.g. 'Lisbon'
fromNoRange start, YYYY-MM-DD (default: today)
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral context. It only describes what the tool returns (hot dates and value windows) but omits details like data source, update frequency, or if it is read-only, leaving significant gaps.

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 single, well-structured sentence that front-loads key terms ('Hot dates' and 'value windows') with zero waste, earning its place.

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

Completeness3/5

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

Without an output schema, the description does not detail the return format or structure of hot dates and value windows, which is a gap for a moderately complex tool with three parameters.

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% with detailed parameter descriptions (city, from, to). The description adds minimal extra meaning beyond stating the tool's purpose, so it meets but does not exceed the baseline for high-coverage schemas.

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 provides 'hot dates' and 'value windows' for a city in a date range, effectively distinguishing it from sibling tools like get_booking_advice or get_last_minute_deals.

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 description implies usage for retrieving price calendar data but does not explicitly state when to use this tool over alternatives or mention any prerequisites or exclusions.

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

get_last_minute_dealsLast-minute hotel dealsAInspect

Current last-minute hotel deals in a city: live rates below each hotel's tracked typical price, plus hotels that historically drop prices close to check-in.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCity name, e.g. 'Lisbon'
Behavior3/5

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

No annotations provided, so the description bears full burden. It reveals that deals include 'live rates below each hotel's tracked typical price' and hotels that 'historically drop prices', which is useful behavioral context. However, it does not mention data freshness, caching, or any side effects, leaving gaps in transparency.

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 concise with two sentences that front-load the main purpose. Each sentence adds value: the first defines the output, the second clarifies the deal comparison. Minor structural improvement could include bullet points for clarity, but overall efficient.

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

Completeness3/5

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

Given a single parameter with full schema coverage and no output schema, the description should elaborate on the response format. It mentions 'live rates' and 'typical price' but not whether the output is a list of hotels, price reductions, or percentages. This gap reduces completeness for an agent to use the tool effectively.

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% with the 'city' parameter described as 'City name, e.g. 'Lisbon''. The description only restates that deals are 'in a city', adding no new meaning beyond the schema. Baseline 3 is appropriate as the parameter is simple and well-documented.

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 it provides 'current last-minute hotel deals in a city' and specifies the comparison to 'tracked typical price' and historical patterns. This uniquely identifies the tool's purpose and distinguishes it from siblings like 'get_booking_advice' which offers booking recommendations, and 'get_city_calendar' which shows events.

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 description implies when to use (to find last-minute deals) but does not explicitly state when not to use it or mention alternatives. It lacks guidance on prerequisites or comparison with siblings, relying on the tool name and context.

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

list_citiesList covered citiesAInspect

List the cities with hotel booking-timing data on Best Time to Book Hotels. Optionally filter by a search string. Call this first to learn coverage.

ParametersJSON Schema
NameRequiredDescriptionDefault
searchNoOptional filter matched against city and country names
Behavior3/5

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

With no annotations, the description carries the full burden. It indicates the tool is read-only and non-destructive ('List'), but does not disclose output structure or potential limitations. For a simple list tool, 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.

Conciseness5/5

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

Two sentences with no wasted words. The purpose is front-loaded in the first sentence, and usage guidance appears immediately after, making it easy to parse.

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 covers the tool's role and primary use case. However, it lacks detail about the output format (e.g., whether it returns city names, objects, or markers), which would be useful for agents. Minor gap, but overall complete for a simple tool.

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%, and the description restates the parameter's purpose ('Optionally filter by a search string'). This matches the baseline for high coverage, adding no extra meaning 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 verb 'List' and the resource 'cities with hotel booking-timing data'. It explicitly distinguishes from sibling tools by explaining the tool's role as an initial discovery step ('Call this first to learn coverage').

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 ('Call this first to learn coverage'), implying it should be used before other tools. However, it does not explicitly state when not to use it or provide 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

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources