Skip to main content
Glama

Check coverage and price

check_coverage
Read-onlyIdempotent

Read-only preview for a route: which network would run it (on_network robot or off_network partner courier), the posted flat price, eligibility, and an arrival window. Nothing to accept, never required before booking.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parcelNo
policyNo
pickup_addressYes
dropoff_addressYes
robomart_versionNo

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description adds useful behavioral context beyond that: it is a preview that returns network choice, price, eligibility, and arrival window, and it has no acceptance or booking side effect. No contradiction with 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?

Two tight sentences with no filler. The read-only nature is front-loaded, the return information is compactly listed, and the closing caveat about not being required for booking earns its place. Well-structured and efficient.

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?

With no output schema, the description does provide a useful high-level summary of the response contents and the non-committal pre-booking context. However, it leaves some gaps for an agent: the policy enum semantics, optional parcel constraints, and the meaning of the pinned robomart_version are not addressed, so the description is strong but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not compensate by explaining the parameters. It never clarifies the meaning of the parcel dimensions, the policy enum values ('allow_roaming', 'on_network_only'), or robomart_version. Pickup and dropoff addresses are inferable from context, but the policy parameter is central to the network decision and is left entirely to 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 and resource: a read-only route preview. It enumerates the concrete outputs (network, flat price, eligibility, arrival window) and clearly separates itself from fulfillment siblings like book_delivery and track_delivery by framing it as pre-booking and non-committal.

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?

The description gives clear usage context: use this before booking as a low-risk preview, and explicitly says there is 'nothing to accept' and it is 'never required before booking.' It does not name sibling alternatives or state when not to use it (e.g., for tracking or cancellation), so it stops short of full explicit routing.

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/5.0
Disambiguation5/5

Each tool targets a distinct action in the delivery lifecycle: coverage lookup, booking, cancellation, tracking, and proof retrieval. There is no meaningful overlap or risk of an agent selecting the wrong tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: book_delivery, cancel_delivery, check_coverage, get_proof, track_delivery. The verbs are specific and the pattern is predictable.

Tool Count5/5

Five tools is well-scoped for a delivery booking server. Each tool covers a necessary step or read operation without redundancy or bloat.

Completeness5/5

The tool surface covers the full delivery workflow: pre-booking coverage check, booking, cancellation, live tracking, and completion proof. There are no obvious dead ends or missing critical operations.

Resources