Skip to main content
Glama

Multi-Carrier Tracking

Server Details

Auto-detect carrier from tracking number: USPS, UPS, FedEx, DHL, India Post, more.

Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL
Repository
guptaprakhariitr/multi-carrier-tracking-mcp
GitHub Stars
0
Server Listing
multi-carrier-tracking-mcp

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: carrier identification, listing supported carriers, batch tracking, and single package tracking. There is no ambiguity in their roles.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (detect_carrier, list_carriers, track_multiple, track_package), making them predictable.

Tool Count5/5

With 4 tools, the set is well-scoped for a tracking server, covering the essential operations without superfluous or missing functionality.

Completeness4/5

The tool set covers carrier detection, listing, single tracking, and batch tracking. A minor gap is the lack of a tool to validate tracking number format against a carrier, but the core workflows are complete.

Available Tools

4 tools
detect_carrierAInspect

Identify which carrier a tracking number belongs to, without actually fetching status. Returns primary guess + any other candidates for ambiguous numbers.

ParametersJSON Schema
NameRequiredDescriptionDefault
tracking_numberYes
Behavior4/5

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

No annotations provided, so description carries full burden. It transparently states it returns a primary guess and candidates for ambiguous numbers, and that it does not fetch status. Could mention error handling or unknown carriers but sufficient.

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 with no wasted words. Front-loaded with the primary action. Very concise and to the point.

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 simple tool with one parameter and no output schema or annotations, the description is quite complete. It covers input, output structure, and behavior. Minor gaps like error handling could be addressed but not critical.

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

Parameters4/5

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

Schema has 0% coverage (no description for tracking_number parameter). Description compensates by explaining the parameter's purpose (tracking number for carrier detection). For a simple string parameter, this is adequate.

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?

Description clearly identifies the verb ('Identify'), resource ('carrier for a tracking number'), and scope ('without actually fetching status'). It distinguishes itself from siblings like track_package by stating it does not fetch status.

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?

Description implies when to use this tool (before tracking to identify carrier) and mentions it returns candidates for ambiguous numbers. However, it does not explicitly state when not to use or compare directly to siblings, but the context is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_carriersAInspect

List supported carriers and their countries.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior2/5

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

No annotations provided; description does not disclose behavioral aspects such as read-only nature, rate limits, or definition of 'supported'. The agent has no indication if this is a safe read operation.

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?

One sentence, no filler, front-loaded with purpose. Every word contributes.

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

Completeness3/5

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

Given zero parameters and no output schema, the description is adequate but could mention output format or that it returns a list of carrier-country pairs. It meets minimum requirements but lacks depth.

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

Parameters4/5

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

No parameters exist, so the description does not need to add parameter info. Baseline 4 applies as per instructions.

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?

Clearly states the action (list) and the resource (supported carriers and their countries). Distinguishes from sibling tools (detect_carrier, track_multiple, track_package) which are for detection and tracking.

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

Usage Guidelines3/5

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

No explicit guidance on when to use or alternatives. However, the tool is simple and self-explanatory; lacking exclusion criteria reduces score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

track_multipleAInspect

Batch tracking. Provide up to 25 tracking numbers; auto-detects each carrier and returns results in the same order. Slower entries are not retried within the batch.

ParametersJSON Schema
NameRequiredDescriptionDefault
tracking_numbersYes
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses auto-detection of carriers, same-order results, and that slower entries are not retried within the batch. This covers key behavioral traits for a batch tool.

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?

Three short, clear sentences with no redundancy. Front-loaded with 'Batch tracking' and immediately provides key limits and behaviors.

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 simple single-parameter tool without output schema, description is sufficiently complete. It covers input limits, processing behavior, and output ordering. Minor omission: no mention of error handling or empty list case.

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

Parameters4/5

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

With 0% schema description coverage, description adds meaning: batch limit of 25, auto-detection, ordering. Schema only defines type and maxItems; description enriches with behavioral context.

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 tool name and description clearly indicate batch tracking. It distinguishes from sibling tools like track_package (single) and detect_carrier (carrier detection only). The verb 'batch tracking' plus specifics (up to 25 numbers, auto-detect carrier, same order) make purpose unambiguous.

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

Usage Guidelines3/5

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

Description implies use for batch tracking but doesn't explicitly state when to choose this over track_package or detect_carrier. It mentions limits and behavior but lacks explicit 'use this when' guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

track_packageAInspect

Get the current status and event history for a single package. Auto-detects the carrier from the tracking number; pass carrier explicitly if detection is ambiguous. Returns structured events with timestamp, status, and location.

ParametersJSON Schema
NameRequiredDescriptionDefault
carrierNoOptional override: 'usps' | 'ups' | 'fedex' | 'dhl' | 'india_post' | 'delhivery' | 'bluedart' | 'aramex'.
tracking_numberYesThe tracking number, spaces/dashes ignored.
Behavior4/5

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

No annotations provided, so description must cover behavior. It discloses auto-detection of carrier and return format (structured events with timestamp, status, location). Could mention rate limits or error handling, but adequate for this tool.

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 fluff. Front-loaded with main purpose. Every clause adds information.

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 tracking tool, description covers all needed points: input (tracking number, optional carrier), behavior (auto-detection), output (events with timestamp, status, location). No output schema but description compensates.

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

Parameters4/5

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

Schema coverage is 100%, baseline 3. Description adds value: 'spaces/dashes ignored' for tracking_number, and 'pass carrier explicitly if detection is ambiguous'. These go beyond 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?

Description clearly states verb (get) and resource (status and event history for a single package). Distinguishes from siblings by specifying 'single package' vs. multiple tracking, and mentions auto-detection which differentiates from detect_carrier and list_carriers.

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?

Tells when to explicitly pass carrier (if detection ambiguous). Implicitly guides to use track_package for single package vs. track_multiple. Does not explicitly state when NOT to use, but context is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Allows tracking of parcel deliveries across various carriers using the 17track.net API, with automatic or manual carrier detection.
    2
    35
    6
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Track packages across 3,200+ carriers (USPS, UPS, FedEx, DHL, China Post, UniUni, SpeedX and more) with automatic carrier detection. Register, list, and archive tracking numbers and get real-time delivery event timelines via the 24hTrack API.
    51
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to track and manage deliveries by interacting with the Parcel delivery tracking API. Users can add new shipments, retrieve active delivery statuses, and look up carrier information through natural language.
    2

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.