search-carrier
Find carrier names by keyword, supporting typos and case-insensitivity. Specify a limit for results to streamline parcel tracking on the Parcel Tracking MCP Server.
Instructions
Search carriers by name keyword (supports fuzzy typos)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Max number of results to return (default 10) | |
query | Yes | Keyword to search carrier names, case-insensitive (typos allowed) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Max number of results to return (default 10)",
"type": "number"
},
"query": {
"description": "Keyword to search carrier names, case-insensitive (typos allowed)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}