Skip to main content
Glama
Reese-max

Travel Planning MCP

by Reese-max

get_reservation

Fetch a reservation by its ID to view current travel booking details. Confirmed reservations remain immutable against direct AI changes, preserving accuracy until human-approved updates.

Instructions

Read a reservation. Confirmed fixed reservations are protected from direct AI mutation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reservation_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It adds a meaningful caveat that confirmed fixed reservations are protected from direct AI mutation, but does not disclose return format, errors, or permission requirements.

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 terse sentences, front-loaded with the core action and followed by a relevant caveat. No filler or redundant restatement of the schema.

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?

For a single-parameter read tool this is mostly adequate, but there is no output schema and no description of what the reservation read returns. The protection note is useful, yet the lack of usage guidance and return semantics leaves gaps.

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 0%, so the description should compensate for parameter meaning, but it does not mention reservation_id at all. The schema itself fully constrains the UUID, yet the description adds no context beyond the property name.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool reads a reservation, which is a specific verb+resource pair. It distinguishes from sibling tools by resource type, though it does not explicitly contrast with get_trip or get_place.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given for when to use this tool versus alternatives like get_trip or get_trip_context. The mutation-protection sentence is a behavioral warning, not usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.