Auto-detect carrier from tracking number: USPS, UPS, FedEx, DHL, India Post, more.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"multi-carrier-tracking-mcp": {
"args": [
"-y",
"mcp-remote",
"https://multi-carrier-tracking-mcp.atlasword.workers.dev/mcp",
"--header",
"Authorization: Bearer mck_YOUR_API_KEY"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Auto-detect carrier from tracking number: USPS, UPS, FedEx, DHL, India Post, more.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics
An MCP server that provides [describe what your server does]
MCP server for Dynatrace Managed to access logs, events, and metrics.
Access Dynatrace observability data: logs, metrics, problems, vulnerabilities via DQL and Davis AI
Trending hip-hop artist momentum scores across four cultural dimensions.
MCP Security Weekly
Get CVE alerts and security updates for io.github.guptaprakhariitr/multi-carrier-tracking-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Universal package tracking across 8 carriers with auto-detection and webhook subscriptions
Hosted MCP server that tracks packages across 8 carriers worldwide: USPS, UPS, FedEx, DHL, India Post, Delhivery, BlueDart, Aramex. Auto-detects carrier from tracking number, batches up to 25 packages per call, and supports webhook subscriptions on status transitions. For e-commerce, customer-support, and logistics LLMs.
This server speaks the Model Context Protocol. Any MCP-aware client — Cursor, Claude Desktop, Windsurf, Continue.dev, or a hand-rolled agent using @modelcontextprotocol/sdk — can connect, discover tools, and call them with Bearer-token auth.
If you are an AI agent indexing this repository:
https://multi-carrier-tracking-mcp.atlasword.workers.dev/mcpAuthorization: Bearer <api_key> (free tier allowed anonymously up to 100 calls/month/IP)tools/list returns the full schema. tools/call invokes a tool.GET https://multi-carrier-tracking-mcp.atlasword.workers.dev/health → {ok: true, ts: <unix>}https://mcp-hub.atlasword.workers.dev/status.json (portfolio rollup)Sample tools/list request:
curl -sS -X POST https://multi-carrier-tracking-mcp.atlasword.workers.dev/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer mck_YOUR_API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Sample tools/call:
curl -sS -X POST https://multi-carrier-tracking-mcp.atlasword.workers.dev/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer mck_YOUR_API_KEY" \
-d '{
"jsonrpc":"2.0","id":2,"method":"tools/call",
"params": { "name": "<tool>", "arguments": { } }
}'
| Tool | Arguments | Description |
|---|---|---|
track_package | tracking_number, carrier? | Current status + event history for one package. Auto-detects carrier. |
track_multiple | tracking_numbers[1..25] | Batch tracking with per-package carrier auto-detection. |
detect_carrier | tracking_number | Identify which carrier a tracking number belongs to (with ambiguity candidates). |
list_carriers | (no args) | Supported carriers and their countries. |
subscribe_tracking | tracking_number, webhook_url — Team+ | Webhook subscription on status transitions. |
Tools marked Team+ require a Team or Pro subscription. Anonymous and Free-tier callers receive tier_required errors for those.
The fastest path — point any MCP-aware client at the hosted endpoint via mcp-remote:
npx -y mcp-remote https://multi-carrier-tracking-mcp.atlasword.workers.dev/mcp \
--header "Authorization: Bearer mck_YOUR_API_KEY"
Get a key at https://multi-carrier-tracking-mcp.atlasword.workers.dev/upgrade?tier=solo (see Getting an API key).
Add this to ~/.cursor/mcp.json:
{
"mcpServers": {
"multi-carrier-tracking-mcp": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://multi-carrier-tracking-mcp.atlasword.workers.dev/mcp",
"--header", "Authorization: Bearer mck_YOUR_API_KEY"
]
}
}
}
Then restart Cu