Skip to main content
Glama

Quote a trip

quote_trip
Read-only

Price one trip and get back a single fixed all-in total in USD, including the Operations & Chauffeur Fee. Standard rates, no account needed, nothing stored. The total is an estimate: an account with negotiated rates prices differently.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addonNoAirport add-on. meetgreet is arrivals only, departure is departures only.
hoursNoLength of the block. Required for hourly and shuttle.
stopsNoWaypoint addresses, in order.
pickupNoStreet address the trip starts from. Omit for the airport end of an arrival.
dropoffNoStreet address the trip ends at. Omit for the airport end of a departure.
serviceYesWhich service to price. Call list_services for what each one covers.
car_seatsNoNumber of child car seats required.
directionNoRequired on any airport service.
extra_stopsNoCount of unaddressed extra stops on an hourly booking.
airport_codeNoIATA code, e.g. "BUR" or "VNY". Assumed LAX for the lax service.
baggage_valetNoBags collected and carried through. Arrivals only.
booster_seatsNoNumber of booster seats required.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and destructiveHint, so the safety profile is covered. The description adds valuable context by stating 'nothing stored' (non-persistence), 'estimate' (not guaranteed), and the distinction between standard and negotiated rates, going beyond the annotations.

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 three sentences long, front-loaded with the primary purpose. Each sentence contributes meaningful info: the output type, the conditions (standard rates, no account, nothing stored), and the estimate caveat. There is no redundancy or filler.

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 12-parameter tool with no output schema, the description clearly communicates the core response (single total) and gives important context (standard rates, estimate nature). It does not explain conditional parameters or return format details, but the schema handles parameter guidance. Sufficient for tool selection and basic invocation, though not exhaustive.

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 descriptions provide 100% coverage for all 12 parameters, so the baseline is 3. The description does not discuss any parameter specifics; it only mentions that the total includes the Operations & Chauffeur Fee, which is not tied to a specific parameter. Thus, no additional semantic value is added over the schema.

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 states a specific verb ('Price') and resource ('one trip'), and clearly defines the output as a single fixed all-in total. It distinguishes itself from the sibling tool list_services by focusing on pricing rather than service definitions.

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

Usage Guidelines4/5

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

Provides clear context by stating 'Standard rates, no account needed, nothing stored', indicating when this tool is appropriate. However, it does not explicitly mention alternatives like list_services or exclusions for negotiated-rate accounts, leaving the when-not guidance implicit.

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

A4.3/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: listing services, quoting a trip, and booking a trip. There is zero overlap in function, making selection unambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (list_services, quote_trip, book_trip) with snake_case throughout. The naming is predictable and uniform.

Tool Count4/5

With only 3 tools, the set is minimal but aligned with the server's narrow scope of a car service booking flow. It feels slightly thin but not unreasonable; each tool earns its place.

Completeness3/5

The surface covers the core workflow (list, quote, book), but lacks tools for checking trip status, modifying, or cancelling a booking—those are handled externally via phone, creating a notable gap for agents.

Resources