Skip to main content
Glama

trip_item_update

Update a trip item

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate (YYYY-MM-DD)
nameNoItem name
notesNoAdditional notes
itemIdYesItem ID
statusNoItem status. Canonical values: IDEA, SHORTLISTED, BOOKED, COMPLETED, CANCELLED. Legacy aliases accepted: RESEARCHED→SHORTLISTED, CONFIRMED→BOOKED.
timeEndNoEnd time (HH:MM)
timeStartNoStart time (HH:MM)
costActualNoActual cost paid
descriptionNoDetailed description
bookingReferenceNoBooking reference number
confirmationNumberNoConfirmation number

TDQS

C2.9/5.0
Behavior2/5

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

The annotations already convey the safety profile (readOnlyHint=false, destructiveHint=false), and the description adds no behavioral context beyond restating that a mutation occurs. It does not disclose whether the update is a partial merge or a full replacement, whether itemId itself is mutable, or whether status changes are validated against the canonical enum workflow. With annotations covering the basics, the description contributes essentially nothing extra.

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

Conciseness4/5

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

Four words with no filler and a front-loaded verb — structurally efficient and easy to parse. The brevity borders on under-specification, but that is a content gap penalized in other dimensions rather than a structure or conciseness flaw.

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 and no output schema, this description is a stub. An agent cannot determine whether the call returns the updated item, whether unspecified fields are preserved, or whether constraints like timeStart preceding timeEnd apply. A tool of this complexity needs at least a sentence on update semantics and return behavior, and it has none.

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 baseline of 3 applies. The schema already documents all 11 parameters thoroughly, including canonical status values, legacy aliases, and date/time formats. The description adds zero parameter-level meaning, but no compensation is needed because the schema carries the full burden.

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 states a specific verb ('Update') and a specific resource ('a trip item'), which clearly signals a modification operation distinct from trip_item_add, trip_item_delete, and trip_item_list. It is unambiguous but does not explicitly contrast with siblings or hint at the workflow position of updates, so it stops short of full differentiation.

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?

There is no guidance on when to use this tool versus alternatives — no mention that the item must already exist (e.g., created via trip_item_add), no note on trip-edit permissions, and no direction on when to update in place versus delete-and-recreate. The single sentence 'Update a trip item' leaves all usage decisions to inference.

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

B3.1/5.0
Disambiguation4/5

Most tools are clearly separated by resource type and action, making selection. The main ambiguity is between trip_item_add and trip_transport_add, since trip_item_add lists transport as a category but trip_transport_add explicitly says to always use it instead for transport.

Naming Consistency4/5

The naming pattern is highly consistent: trip_<resource>_<action>. Minor deviations exist with bare verbs like search and fetch, and trip_review uses a verb-only style, but these are easy to understand within the larger pattern.

Tool Count2/5

37 tools is a large surface that exceeds the typical coherence threshold. While the domain is broad, the count makes the server feel heavy and harder for an agent to navigate compared to a more focused toolset.

Completeness4/5

The toolset provides strong CRUD/lifecycle coverage across trips, items, notes, tasks, locations, collaborators, shares, and transport, plus review and search capabilities. Minor gaps exist, such as no direct collaborator add, no location update, and no item-level comment delete, but these are workable.