eShipz Tracking MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eShipz Tracking MCP ServerTrack package AB123456789US"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
eShipz Tracking MCP Server
A Model Context Protocol (MCP) server that provides shipment tracking functionality through the eShipz API. This server enables Claude Desktop to track packages across multiple carriers with intelligent, status-aware formatting.
Features
📦 Track shipments across multiple carriers
🎯 Status-aware output formatting
✅ Automatic status detection (Delivered, In Transit, Exception, etc.)
🌍 Location-based updates
📊 Event count and timeline tracking
🔐 Secure API token management via environment variables
Prerequisites
Python 3.12 or higher
uv package manager
eShipz API token
Claude Desktop app
Installation
Clone the repository:
git clone https://github.com/YOUR_USERNAME/mcp-eshipz.git
cd mcp-eshipzCreate a
.envfile in the project root:
API_BASE_URL=https://app.eshipz.com
ESHIPZ_TOKEN=your_eshipz_api_token_hereInstall dependencies:
uv syncConfiguration
Add the server to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"eshipz_tracking": {
"command": "uv",
"args": [
"--directory",
"C:\\path\\to\\mcp-eshipz",
"run",
"main.py"
]
}
}
}Replace C:\\path\\to\\mcp-eshipz with your actual project path.
Usage
After configuring the server and restarting Claude Desktop, you can ask Claude to track packages:
"Track package "
"What's the status of tracking number ABC123?"
"Check delivery status for tracking XYZ789"
"Analyze the carrier performance"
"Create new shipment with valid values for all required fields"
"Pre Docket Allocation"
Note: for the required fields for all features refer to the API docs of eShipz
Shipment Query Workflow (Reusable Response Data)
The server now supports a fetch-once, query-many flow for shipment analysis.
Run
query_shipmentsto fetch shipments and create a reusablequery_idcontext.Reuse the same
query_idwithquery_shipments_followupfor:
stuck shipment checks (
intent="stuck")grouped summaries (
intent="aggregate",group_by="status"|"carrier"|"sub_status"|"age_bucket")filtered listing (
intent="list"with optional filters)
Use
get_shipment_details_from_queryto fetch a specific shipment from cached context byawbororder_id.
This lets Claude answer multiple follow-up questions from the same API response without refetching each time.
Backward Compatibility
get_shipmentsstill works for stuck shipment reporting.It now internally uses shared shipment normalization/stuck logic and includes a
Query IDin output for follow-up analysis.
Query Context Behavior
Query contexts are short-lived in-memory cache entries.
If a query id expires, rerun
query_shipmentsto get a freshquery_id.Cache tuning environment variables:
SHIPMENT_QUERY_TTL_SECONDS(default:1200)SHIPMENT_QUERY_MAX_CONTEXTS(default:25)SHIPMENT_QUERY_MAX_RECORDS(default:2000)
Development
Run the server locally for testing:
uv run main.pyProject Structure
mcp-eshipz/
├── main.py # Main MCP server implementation
├── pyproject.toml # Project dependencies
├── .env # Environment variables (not in git)
├── .gitignore # Git ignore rules
└── README.md # This fileDependencies
httpx- Async HTTP clientmcp- Model Context Protocol SDKpython-dotenv- Environment variable management
Support
For issues or questions, please open an issue on GitHub.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KavinVetrivel/eshipz-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server