Skip to main content
Glama

build_package_link

Read-onlyIdempotent

Generate a deep link to a curated Event Escapes PACKAGE detail page (/packages/{slug}). Packages are hand-curated bundles of event tickets + hotel + experiences with savings vs DIY booking. Use this AFTER calling search_packages to surface a specific package to the user. This does NOT make a reservation - the user reviews tier/duration/guest selectors and books on the package page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugNoPackage slug from search_packages results.
guestsNoNumber of travellers. ASK THE USER before passing this - do not assume a default.
check_inNoOptional check-in date (YYYY-MM-DD).
check_outNoOptional check-out date (YYYY-MM-DD).
package_idNoPackage UUID from search_packages results.

TDQS

A4.5/5.0
Behavior4/5

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

The description discloses that the tool only generates a link and does not perform a reservation, which is beyond the annotations' read-only/idempotent hints. It also notes the tool is for curated packages and emphasizes user interaction on the package page. While annotations already cover safety, the description adds clarity about the tool's non-reservation behavior and its role in the user flow.

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 long and front-loaded with the action and resource. It earns every sentence by providing purpose, usage context, and a clear limitation, with no fluff or repetition of schema details.

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?

The tool is simple (generates a link) and the description covers its purpose, when to use it, and what it does not do. Annotations cover safety, and all parameters are documented in the schema. No output schema is needed because the output is self-evident. The description is complete for guiding an agent.

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 covers 100% of parameters with descriptions, so the baseline is 3. The description adds minimal parameter-specific meaning beyond stating it surfaces a package; it does not explain parameter formats or constraints. However, it reinforces that parameters come from search_packages results, which is useful context but not required because schema already documents each field.

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: 'Generate a deep link to a curated Event Escapes PACKAGE detail page'. It specifies the resource (package detail page) and the action (generate deep link), and differentiates from siblings by focusing on packages and explicitly referring to search_packages. The phrase 'does NOT make a reservation' further clarifies its non-booking role.

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?

The description provides explicit usage context: 'Use this AFTER calling search_packages to surface a specific package to the user.' It also states when not to use it: 'This does NOT make a reservation - the user reviews tier/duration/guest selectors and books on the package page.' This clearly directs the agent to use it only after search, and not as a booking action.

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.3/5.0
Disambiguation5/5

Each tool targets a distinct resource or action: events, packages, experiences, hotels, and link building for events vs packages. The descriptions explicitly cross-reference to prevent confusion, such as 'Use build_package_link instead' and 'use search_packages instead'.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: build_event_link, build_package_link, get_event_details, search_events, search_experiences, search_hotels_near_event, search_packages. The verbs (build, get, search) are used predictably.

Tool Count5/5

Seven tools is well within the ideal 3-15 range for a domain. Each tool serves a distinct purpose in the event/package discovery and link-generation workflow, with no redundancy or unnecessary additions.

Completeness4/5

The tool set covers the core workflows: searching events, getting event details, searching hotels and experiences, searching packages, and generating links for both events and packages. A minor gap is the lack of a get_package_details tool to retrieve package details programmatically, but agents can work around it by sending users to the package page.

Resources