Skip to main content
Glama

get_attention_required

Read-onlyIdempotent

Scans the signed-in host's most recent bookings (up to 50) and returns only what needs action right now: stays that are imminent or under way where the guest has not completed check-in, and bookings whose SES.HOSPEDAJES submission failed. Empty list means nothing needs attention within the window. No guest PII.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
arrivalWindowDaysNoHow many days ahead counts as "imminent" (a negative gap means the stay already started). Defaults to 3.

Schema Changelog

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

  1. Added

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the description's job is lighter. It still adds meaningful behavioral context: the 50-booking scan window, the signed-in host scope, empty-list semantics, and the explicit 'No guest PII' guarantee. The exact return shape and ordering are not disclosed, but this is not critical for a read-only tool.

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 two sentences with no filler. It front-loads the tool's action and outcome, then compactly lists the criteria and key behavioral facts (empty-list meaning, PII exclusion). 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 read-only tool with one optional parameter and no output schema, the description covers the input semantics, output selection criteria, empty-list behavior, and privacy boundary. The main unstated detail is the exact response structure, but the described behavior is sufficient for an agent to invoke it correctly.

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 single parameter arrivalWindowDays is fully documented in the schema with a default value and an explanation of the negative-gap meaning, giving a baseline of 3. The description itself does not add further parameter detail, but none is needed given the schema's complete coverage.

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 states a specific verb and resource: it scans the signed-in host's recent bookings and returns only actionable items. It then enumerates the exact inclusion criteria (imminent/in-progress stays with no guest check-in, and failed SES.HOSPEDAJES submissions), which clearly distinguishes it from list_bookings and status-related siblings.

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 clearly communicates when this tool is appropriate: it is for surfacing only items that need immediate action, and an empty list means nothing requires attention. However, it does not explicitly mention alternatives such as list_bookings for full booking history or get_guest_form_status for individual form status, so the exclusion guidance is implied rather than stated.

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 concern: guest form completion, usage/limits, bookings, properties, SES statuses, and sending links. Even the two booking-related tools are separated by intent (form status vs. booking metadata/link existence).

Naming Consistency5/5

All names follow a predictable verb_noun pattern: get_* for status/summary queries, list_* for collections, and send_* for the single action. Minor acronym styling (ses_statuses, checkin_link) does not break the pattern.

Tool Count5/5

Six tools is well-scoped for a guest check-in and property-management helper. Each tool covers a distinct operation without redundancy or bloat.

Completeness4/5

The server covers the main host workflows: viewing properties/bookings, checking guest form completion, sending/resending check-in links, and monitoring SES compliance status. Minor gaps exist (e.g. no way to trigger SES submission or view form content), but these appear deliberately out of scope.