Skip to main content
Glama

trip_update

Update trip details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoTrip name
statusNoTrip status
tripIdYesTrip ID
endDateNoEnd date (YYYY-MM-DD)
currencyNoCurrency code (USD, GBP, EUR)
timezoneNoIANA timezone (e.g., "Europe/London")
startDateNoStart date (YYYY-MM-DD)
budgetTotalNoTotal budget
destinationNoDestination city/country
destinationLatNoDestination latitude (-90 to 90)
destinationLngNoDestination longitude (-180 to 180)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / destinationLat
      Added value: +{
      +  "description": "Destination latitude (-90 to 90)",
      +  "type": "number"
      +}
    • addedInput schema / properties / destinationLng
      Added value: +{
      +  "description": "Destination longitude (-180 to 180)",
      +  "type": "number"
      +}
    • addedInput schema / properties / timezone
      Added value: +{
      +  "description": "IANA timezone (e.g., \"Europe/London\")",
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.5/5.0
Behavior2/5

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

Annotations declare readOnlyHint=false and destructiveHint=false, so the description does not contradict them. However, the description adds no behavioral context beyond the annotations: it does not disclose whether this is a partial update (PATCH-like) or full replacement, whether updating status has side effects (e.g., cascading to items), or whether destination coordinates are required together. For a mutation tool with 11 parameters, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no wasted words, which is efficient. However, it is under-specified: it earns its place but does not carry enough information to be genuinely helpful. It is concise but not structured to front-load any differentiating detail.

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?

For a mutation tool with 11 parameters, no output schema, and no usage guidance, the description is incomplete. The schema covers parameter formats, but the description does not explain the update semantics, partial-update behavior, or any constraints. An agent could call it correctly from the schema alone, but it would not know the behavioral implications or when to prefer it over sibling update 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 11 parameters. The description adds no additional meaning beyond the schema, which is acceptable per the baseline. However, it does not clarify relationships between parameters (e.g., whether destinationLat/destinationLng must be set together, or whether startDate/endDate have ordering constraints).

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

Purpose3/5

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

The description 'Update trip details' uses a clear verb and resource, but it is generic and does not distinguish this tool from the many other trip_* update tools in the sibling list (e.g., trip_item_update, trip_task_update, trip_note_update). It states what it does at a basic level but lacks specificity about which trip-level fields are affected.

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 provided about when to use this tool versus alternatives. The description does not mention that this is for top-level trip fields (name, status, dates, budget, destination) as opposed to trip items, tasks, notes, or locations. An agent must infer usage from the parameter names alone.

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.