Skip to main content
Glama

workspace

Packages and arrangements

list_arrangements

The bookable packages of one location: stay arrangements and add-on extras, with name, description and validity period. A package price depends on the stay and the party, so ask for it with get_stay_price and the packageId from this list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesLocation slug, e.g. "floreal-blankenberge"

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the transparency burden. It discloses what the list contains (name, description, validity period) and importantly states that prices are not included because they depend on stay and party, directing the agent to get_stay_price. It does not explicitly state read-only behavior or pagination/error behavior, but for a simple listing tool this is reasonable coverage.

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 filler. The first sentence front-loads the purpose and content; the second adds a valuable workflow note about using get_stay_price. Every sentence 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 one-parameter tool with no output schema, the description adequately explains what is returned, the scope, and the critical exception that prices must be requested separately. Minor missing details such as exact return shape or pagination are not significant for this simple list operation.

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?

The schema fully documents the sole parameter 'domain' as a location slug with an example, giving 100% coverage. The description only reinforces this with 'one location' and does not add additional parameter syntax, format constraints, or examples beyond what the schema already provides.

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 the resource: 'bookable packages of one location: stay arrangements and add-on extras, with name, description and validity period.' It distinguishes itself from the pricing sibling by directing price requests to get_stay_price, and its focus on packages/add-ons separates it from list_accommodation_types.

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 gives clear context for when to use the tool: to get the bookable packages of a single location. It also instructs the agent to follow up with get_stay_price using the packageId when a price is needed. It lacks explicit exclusions for other sibling tools, so it misses a full 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a distinct need: FAQs, menus, gift cards, locations, accommodation types, arrangements, and stay pricing. The overlap between get_stay_price and search_stays is explicitly resolved by guidance on when to use each.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern with get_ for single-location/single-topic lookups and list_ for enumerations. gift_card_info breaks the pattern slightly by omitting a verb, but the overall style is still readable and predictable.

Tool Count5/5

Eight tools is a well-scoped size for this domain. Each tool covers a meaningful part of the holiday-resort information surface without redundancy or bloat.

Completeness5/5

The set covers the main guest-facing information needs: locations, accommodation types, live availability and pricing, packages, FAQs, menus, and gift cards. Booking is handled through the provided booking URLs, so the read-only surface feels complete.

Resources