Skip to main content
Glama

list_current_bookings

Read-only

List this agent's active/upcoming bookings at Aurinia XO (check-out today or later), nearest arrival first. Includes cancelled ones (see the status field). Each booking has a door_code field: null until issued, filled once the guest has paid and the code is set. Use this tool to give the guest their door code when they ask (e.g. before check-in) — call it and read door_code.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
bookingsNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=true and openWorldHint=true. The description adds value by noting that cancelled bookings are included and explaining the door_code field lifecycle (null until issued, filled after payment). This provides behavioral context beyond 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 concise sentences, each adding unique value. Front-loaded with the primary purpose, then nuance, then actionable guidance. No redundant or vague phrasing.

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 no parameters, the description covers use case, sorting, inclusion of cancelled bookings, and door_code behavior. With an output schema present, the agent has sufficient context for correct usage.

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?

There are zero parameters, so baseline is 4 per guidelines. The description does not need to add parameter semantics, but it contributes output field semantics (door_code behavior), which is appropriate given no parameters.

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 'list this agent's active/upcoming bookings' with specific criteria (check-out today or later, nearest arrival first). It distinguishes from sibling tools like list_past_bookings via the 'active/upcoming' qualifier.

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 explicit guidance: 'Use this tool to give the guest their door code when they ask'. It does not explicitly contrast with siblings, but the context implies alternatives like book, cancel, get_availability, and list_past_bookings serve different purposes.

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

Each tool targets a distinct action: book creates a hold, cancel cancels, get_availability checks bed availability, list_current_bookings shows active bookings, and list_past_bookings shows historical ones. There's no overlap in purpose; even the two list tools are clearly separated by time horizon.

Naming Consistency5/5

Names are mostly verb_noun (get_availability, list_current_bookings, list_past_bookings) with simple verbs (book, cancel) that follow a predictable pattern. The convention is consistent and easily inferable, with no mixed styles or ambiguous verbs.

Tool Count5/5

With 5 tools, the server is well-scoped for a hostel booking domain. Each tool covers a core operation (available, book, cancel, list current/past) without redundancy or bloat, fitting the typical 3–15 range perfectly.

Completeness4/5

The surface covers the main booking lifecycle: check availability, book, cancel, and list bookings. The only notable gap is the lack of an explicit booking modification tool (e.g., change dates), but this is a minor omission given that cancellation and rebooking are possible. Door code retrieval is handled via list_current_bookings, so no dead ends exist.

Resources