easypost_rates

Pack: easypost · Endpoint: https://gateway.pipeworx.io/easypost/mcp

Get shipping rate quotes from <from_zip> to <to_zip> for a parcel — returns multi-carrier rates (USPS, UPS, FedEx, etc.) with price, service level, and estimated delivery days. Example: easypost_rates({ from_zip: “94105”, to_zip: “10001”, weight_oz: 16, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
to_zipstringyesDestination postal/ZIP code, e.g. “10001”
to_countrystringnoDestination ISO country code (default “US”)
to_statestringnoDestination state/province code (optional), e.g. “NY”
to_citystringnoDestination city (optional), e.g. “New York”
from_zipstringyesOrigin postal/ZIP code, e.g. “94105”
from_countrystringnoOrigin ISO country code (default “US”)
weight_oznumberyesParcel weight in ounces, e.g. 16 for 1 lb
length_innumbernoParcel length in inches (optional)
width_innumbernoParcel width in inches (optional)
height_innumbernoParcel height in inches (optional)
_apiKeystringyesEasyPost API key (get one free at easypost.com)

Example call

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_rates","arguments":{}}}'

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.

Regenerated from source · build July 2, 2026