Skip to main content
Glama

Booking link for a park and dates

parksopen_get_booking_link
Read-onlyIdempotent

A deterministic link into the official reservation system with the park, dates and equipment pre-filled — the user completes the booking there (we never book on their behalf, never hold sites, never take payment). Use after a search, or when the user already knows the park and dates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parkYespark name — approximate is fine
systemNoreservation system id, e.g. bc_parks
categoryNo
end_dateYes
provinceNoprovince code or prefix, e.g. bc
start_dateYes
equipment_classNocanonical class or free text; default tent

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description reinforces and extends this: 'we never book on their behalf, never hold sites, never take payment' explains WHY the operation is read-only and idempotent. 'Deterministic' and 'pre-filled' add behavioral specificity about output consistency that annotations cannot express. 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?

Two sentences, zero filler. The core function and scope boundary are front-loaded in the first sentence; the second sentence delivers routing guidance. The parenthetical about never booking/holding/paying is dense with behavioral information without bloating length.

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 straightforward link-generation tool with rich annotations covering the safety profile, the description provides the essential contract: what is returned (a deterministic, pre-filled link), the usage context, and the behavioral boundaries. Minor gaps exist — no detail on return format beyond 'link', no guidance on how the optional 4 parameters affect the output, and no fallback behavior for ambiguous park names — but none are critical for correct invocation.

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 57% — category, start_date, and end_date have no schema descriptions, and the description doesn't compensate for those. However, it does add cross-parameter meaning by explaining that park, dates, and equipment get embedded/pre-filled into the resulting link, which is coordination knowledge the schema fields individually don't convey. This is adequate but doesn't fully close the documented-parameter gap.

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 names a specific deliverable — a deterministic link into the official reservation system with park, dates, and equipment pre-filled. This clearly differentiates it from all six siblings (alerts, weather, availability, info, campsite search), none of which generate a booking link. The phrase 'the user completes the booking there' crisply defines the tool's scope.

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?

'Use after a search, or when the user already knows the park and dates' gives explicit invocation conditions. The description also states what the tool is not for — booking, holding sites, or taking payment — which routes the agent away from expecting transactional behavior. It doesn't name sibling alternatives explicitly, but the boundary it draws is clear enough.

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
Disambiguation4/5

The tools are mostly distinct: alerts, weather, park info, booking links, and availability each target clear concerns. The only real overlap risk is parksopen_find_open_parks vs parksopen_search_campsites, since both can answer 'which parks have openings', though their descriptions try to separate the no-specific-park vs specific-dates/equipment cases.

Naming Consistency4/5

All tools share the parksopen_ prefix and use snake_case, which helps. Most follow a verb_noun pattern (check_alerts, check_weather, find_open_parks, get_booking_link, search_campsites), but parksopen_park_availability_calendar and parksopen_park_info are noun-first deviations, making the set slightly less predictable.

Tool Count5/5

Seven tools is well-scoped for a camping/reservation assistant: search, find, calendar, alerts, weather, info, and booking link cover the main user journey without bloat. Each tool appears to earn its place.

Completeness5/5

The tool surface covers the full assisted workflow: discovering open parks, checking live availability for dates, viewing multi-week calendars, retrieving park rules and fees, checking alerts and weather, and generating booking links. The explicit decision not to book on the user's behalf is handled through parksopen_get_booking_link, so no critical lifecycle step is missing.

Resources