Skip to main content
Glama

Get Tracker

get_tracker
Read-only

Retrieves a single tracker by trackerId (or clientTrackerId when searchBy is set). Returns tracker metadata only — use get_tracking_results for events and status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
searchByNoHow to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference.
trackerIdYesShip24 trackerId, or clientTrackerId when searchBy="clientTrackerId".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackerYesThe tracker.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": {},
      +  "properties": {
      +    "tracker": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": {},
      +          "properties": {
      +            "clientTrackerId": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "Your own tracker identifier, usable with searchBy=clientTrackerId."
      +            },
      +            "courierCode": {
      +              "anyOf": [
      +                {
      +                  "anyOf": [
      +                    {
      +                      "items": {
      +                        "type": "string"
      +                      },
      +                      "type": "array"
      +                    },
      +                    {
      +                      "type": "string"
      +                    }
      +                  ]
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "Courier code(s) pinned on this tracker."
      +            },
      +            "createdAt": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "When the tracker was created."
      +            },
      +            "isSubscribed": {
      +              "anyOf": [
      +                {
      +                  "type": "boolean"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "False means the tracker is archived and no longer used for tracking."
      +            },
      +            "isTracked": {
      +              "anyOf": [
      +                {
      +                  "type": "boolean"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "False means tracking stopped (delivered, inactive or unsubscribed); existing results remain."
      +            },
      +            "shipmentReference": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "Your own shipment reference, as supplied at creation."
      +            },
      +            "trackerId": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "Ship24 tracker identifier; pass this to get_tracking_results."
      +            },
      +            "trackingNumber": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ],
      +              "description": "Tracking number this tracker follows."
      +            }
      +          },
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "description": "The tracker."
      +    }
      +  },
      +  "required": [
      +    "tracker"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds the important behavioral boundary that only tracker metadata is returned, not events or status. This goes beyond the schema by setting expectations about response scope, though it does not discuss error behavior or lookup failure handling.

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 sentences, no filler. The core operation and key distinction from get_tracking_results are front-loaded, and every clause adds value.

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 simple single-resource read with a full output schema, read-only annotations, and a clear sibling pointer, the description is complete. An agent can correctly invoke the tool and understand what it will get back without needing additional context.

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%, and both parameters are well documented with descriptions and an enum. The tool description adds little beyond the schema, only restating that searchBy alters interpretation of trackerId. Per the baseline, this is adequate but not enhanced.

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 ('Retrieves') and resource ('a single tracker'), and distinguishes this from get_tracking_results by stating it returns metadata only. It also clearly differentiates from list_trackers by focusing on a single tracker rather than a list.

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 instructs the agent to use get_tracking_results for events and status, which is a direct when-to-use/alternative statement. It also clarifies the dual lookup modes via trackerId and clientTrackerId, giving clear context for selecting this tool over siblings.

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.

Resources