Skip to main content
Glama

Submit post-visit feedback

submit_feedback

Report how a confirmed reservation actually went. Accepted only against a confirmed booking_id, once per booking, within 14 days of confirmation. Structured fields first; optional free text ≤ 500 chars. This corpus is served raw to all agents via get_merchant — it is never editorialized or turned into a score.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
free_textNo
booking_idYes
would_repeatNo
seated_on_timeNo
matched_descriptionNoDid the merchant match the registry's description?
reservation_honoredYesDid the merchant honor the reservation?

TDQS

A3.8/5.0
Behavior3/5

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

No annotations provided, so the description carries the full burden. It states that feedback is served raw to get_merchant and not editorialized, which is informative. However, it does not disclose any side effects, permissions required, or whether the submission is reversible.

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?

Three sentences, front-loaded with purpose, each sentence adds necessary information without waste. Highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description provides key constraints (booking_id required, once per booking, 14-day window) and explains how feedback is used (raw to get_merchant). However, it does not describe return behavior (e.g., success/error responses) or the outcome of submission. Lacks completeness given 6 parameters and no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 33% (two parameters have descriptions). The description adds minimal value beyond the schema: it mentions 'Structured fields first' and 'optional free text ≤ 500 chars,' but the free text constraint is already in the schema. No explanation is given for booking_id, would_repeat, or seated_on_time, which are missing from the schema descriptions.

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 'Report how a confirmed reservation actually went,' using a specific verb ('report') and resource ('how a confirmed reservation went'). It distinguishes from sibling tools like cancel_booking, get_availability, etc., which handle different aspects.

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?

Explicit conditions are given: 'Accepted only against a confirmed booking_id, once per booking, within 14 days of confirmation.' It also notes optional free text with a 500-char limit. No exclusions or alternatives are mentioned, but the context is clear.

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

Every tool has a clear and distinct purpose: booking operations (place, modify, cancel, status), merchant discovery (search, details, availability), registry metadata, and feedback submission. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a verb_noun pattern using underscore_case (e.g., place_booking, get_merchant, search_merchants). Verbs are descriptive and consistent across the set.

Tool Count5/5

9 tools are well-scoped for a booking registry server, covering all necessary operations without being overly numerous or sparse. Each tool earns its place.

Completeness5/5

The tool set covers the full lifecycle: search merchants, get details and availability, place/modify/cancel bookings, check status, submit feedback, and registry metadata. No obvious gaps for the intended domain.