Skip to main content
Glama

trip_transport_add

Add a transport item (train, bus, taxi, tube, ferry, walk) or flight to a trip. ALWAYS use this instead of trip_item_add for transport. Both origin and destination are required, ensuring routes display correctly on the map.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate of travel (YYYY-MM-DD)
notesNoAdditional notes
statusNoBooking statusIDEA
tripIdYesTrip ID
currencyNoCurrency code (e.g., GBP, USD, EUR)
operatorNoTransport operator (e.g., "GWR", "British Airways", "Eurostar")
timezoneNoIANA timezone for departure/arrival times (e.g., "Europe/London"). Defaults to trip timezone.
bookingUrlNoBooking URL
arrivalTimeNoArrival time (HH:MM)
descriptionNoAdditional details (e.g., "Direct train, ~1 hour journey")
costEstimateNoEstimated cost
departureTimeNoDeparture time (HH:MM)
transportTypeYesType of transport
originLocationYesDeparture location name (e.g., "London Paddington Station"). Will be geocoded automatically.
costIsPerPersonNoIs cost per person?
bookingReferenceNoBooking reference
destinationLocationYesArrival location name (e.g., "Oxford Station"). Will be geocoded automatically.

TDQS

A4.2/5.0
Behavior3/5

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

Annotations only provide readOnlyHint=false and destructiveHint=false, so the description carries much of the burden. It usefully notes that both origin and destination are required for correct map routing, but it does not disclose other behavioral details such as side effects beyond item creation, validation outcomes, or what the response contains. This is 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?

Two concise sentences deliver the core purpose, the sibling exclusion, and the critical usage constraint. Every sentence earns its place and the most important routing instruction is front-loaded.

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

Completeness4/5

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

For a 17-parameter tool with no output schema, the description covers purpose, required parameters, and the key alternative. The schema fully documents optional parameters, so the description does not need to repeat them. A small gap remains around what happens after a successful add (e.g., return value or generated item location), but overall this is complete enough for safe invocation.

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 coverage is 100%, so the baseline applies: the schema documents all parameters thoroughly. The description adds the key guidance that origin and destination are both required and highlights transport type examples, but it does not meaningfully extend parameter meaning beyond the schema. This meets the baseline without exceeding it.

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 uses a specific verb ('Add') and resource ('transport item ... to a trip'), lists the supported transport types, and explicitly distinguishes itself from trip_item_add. An agent can clearly understand what this tool does and why it exists.

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

Usage Guidelines5/5

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

The description explicitly states 'ALWAYS use this instead of trip_item_add for transport,' naming the sibling alternative and the exact condition for choosing this tool. It also clarifies the required origin/destination fields and their purpose, leaving no ambiguity about when to invoke it.

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.