easypost_track
Pack: easypost · Endpoint: https://gateway.pipeworx.io/easypost/mcp
Track a package by tracking number — returns current status, carrier, estimated delivery date, and recent scan events. Example: easypost_track({ tracking_code: “9400100000000000000000”, carrier: “USPS”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tracking_code | string | yes | Carrier tracking number, e.g. “9400100000000000000000” |
carrier | string | no | Carrier name (optional but recommended), e.g. “USPS”, “UPS”, “FedEx” |
_apiKey | string | yes | EasyPost API key (get one free at easypost.com) |
Example call
Arguments
{
"tracking_code": "9400100000000000000000",
"carrier": "USPS",
"_apiKey": "your-easypost-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/easypost/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"easypost_track","arguments":{"tracking_code":"9400100000000000000000","carrier":"USPS","_apiKey":"your-easypost-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('easypost_track', {
"tracking_code": "9400100000000000000000",
"carrier": "USPS",
"_apiKey": "your-easypost-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"easypost": {
"url": "https://gateway.pipeworx.io/easypost/mcp"
}
}
}
See Getting Started for client-specific install steps.