tracking-delivery
Track parcel deliveries using a tracking number and carrier ID with the MCP server. Automatically detect carriers or specify manually for accurate results.
Instructions
Track a parcel delivery via 17TRACK
Input Schema
Name | Required | Description | Default |
---|---|---|---|
carrier | No | Carrier ID (number). If omitted, 17TRACK will auto-detect, but accuracy may be lower. | |
number | Yes | The tracking number of the parcel |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"carrier": {
"description": "Carrier ID (number). If omitted, 17TRACK will auto-detect, but accuracy may be lower.",
"type": "number"
},
"number": {
"description": "The tracking number of the parcel",
"type": "string"
}
},
"required": [
"number"
],
"type": "object"
}