Skip to main content
Glama

Save a trip

save_trip

Create a new saved trip (itinerary) for the signed-in user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTrip title (1-255 chars).
budgetNoOptional total budget.
endDateYesTrip end, ISO 8601 (YYYY-MM-DD).
startDateYesTrip start, ISO 8601 (YYYY-MM-DD).
descriptionNoOptional notes (≤4000 chars).
budgetCurrencyNoISO 4217 currency for the budget (e.g. 'USD').

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already indicate this is a write operation (readOnlyHint=false) and non-destructive (destructiveHint=false). The description adds the user context ('for the signed-in user') but provides no additional behavioral details such as side effects, auth requirements, or rate limits. Adequate but not rich.

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 a single, well-structured sentence with no unnecessary words. It efficiently conveys the core purpose without fluff.

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

Completeness2/5

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

Given the complexity (6 parameters, no output schema), the description is too minimal. It omits return value hints, parameter relationships (e.g., startDate before endDate), and constraints. The agent would benefit from more context, especially with many sibling tools.

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 description coverage is 100%, so the schema already documents all parameters. The description does not add any meaning beyond what the schema provides, earning the baseline score of 3.

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 specifies the action ('Create'), the resource ('new saved trip (itinerary)'), and the context ('for the signed-in user'). This distinguishes it from siblings like add_trip_item (which modifies an existing trip) and list_trips (which reads trips).

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?

The description does not provide any guidance on when to use this tool versus alternatives. It lacks explicit exclusions or mentions of sibling tools. The agent must infer from the name and sibling list that this is for trip creation only.

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.

Resources