Skip to main content
Glama

Search by Tracking Number

search_tracking_by_number
Read-only

Returns existing tracking results for a raw tracking number across trackers already on the account, without needing a trackerId. Free read: never creates a tracker and never triggers a new crawl. Responds 404 tracker_not_found if no tracker exists for that number — in that case use search_tracking (per-call) or track (per-shipment). Use this first when a tracker may already exist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackingNumberYesThe raw shipment tracking number to search for (e.g. 1Z999AA10123456784).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackingsYesOne entry per matched tracker or shipment.

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, but the description goes further by explaining the concrete side-effect-free guarantees: 'never creates a tracker and never triggers a new crawl.' It also discloses the 404 tracker_not_found behavior, which is important for agents handling missing-tracker cases. This is exactly the kind of behavioral context the dimension rewards.

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 with no filler. The first sentence states the core function and key differentiator, the second covers safety guarantees, and the third handles error behavior and alternatives. Every sentence earns its place, and the most decision-relevant content is front-loaded.

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

Completeness5/5

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

For a single-parameter read-only tool with an output schema and safety annotations, the description is complete. It covers the operation, queried resource scope, side effects, error response, and routing to alternatives. There is nothing an agent needs to call this tool correctly that is missing, and the presence of an output schema means return-value details need not be repeated.

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?

The schema already fully documents the single parameter with a type, minLength, and an example. The description adds the framing 'raw tracking number' and 'across trackers already on the account,' which slightly enriches the parameter's meaning, but it does not add substantially new information beyond the schema. With 100% schema coverage, the baseline of 3 is appropriate.

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: 'Returns existing tracking results for a raw tracking number across trackers already on the account.' It also clarifies the key distinction that no trackerId is needed, and it distinguishes itself from siblings by naming search_tracking and track as alternatives. This gives an agent a clear, unambiguous understanding of what the tool does.

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 provides explicit when-to-use guidance: 'Use this first when a tracker may already exist.' It also gives a concrete fallback path on 404, directing the agent to search_tracking or track with selection criteria ('per-call' vs 'per-shipment'). This fully resolves the choice among the closely related sibling tools.

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

A3.9/5.0
Disambiguation2/5

Several tools appear to answer the same 'where is my package?' question: search_tracking, search_tracking_by_number, track, and get_tracking_results. The descriptions explain subtle differences around billing, persistence, and account state, but the tool boundaries are still easy to blur during selection.

Naming Consistency4/5

Most tools follow a consistent snake_case verb_noun pattern such as create_tracker, get_tracker, list_trackers, update_tracker, and bulk_create_trackers. The bare verb 'track' breaks the pattern, and search_tracking_by_number is a bit awkward, but overall naming is predictable.

Tool Count5/5

Twelve tools is a reasonable, well-scoped size for a tracking service covering tracker lifecycle management, batch creation, search, couriers, and webhook operations. The count feels justified rather than padded.

Completeness3/5

The surface covers create, get, list, update, bulk creation, search, and webhook history/replay, which is fairly comprehensive. However, there is no delete_tracker or equivalent removal tool, leaving a notable lifecycle gap for stopping or cleaning up trackers.

Resources