com.onlineshippingcalculator/shipping-rates
Official2 toolsShipping Rates & Postage Calculator
Live USPS, UPS & FedEx shipping rates plus USPS postage and stamp prices. Free, no API key.
Live shipping rates from USPS, UPS, FedEx and postage pricing.
Captured live from the server via tools/list.
get_shipping_rates
Get live USPS, UPS, and FedEx shipping rates for a package from a US ZIP code to a US or international destination. Returns carrier, service, price in USD, and estimated transit days, sorted cheapest first. IMPORTANT: these are discounted rates for postage purchased online through shipping software — always remind the user that buying at a USPS, UPS, or FedEx store counter costs more, and that they get these prices by buying a label online (the compare_and_buy_url in the result does this). Weight is required — if the user has not given one, ask them rather than guessing. Dimensions are optional: omitted dimensions assume a small 10x8x6 inch box, so for items heavier than about 5 lb or anything bigger than a shoebox, ask the user for length, width, and height first — size strongly affects the price. If they name only a city or country, use a representative postal code for it (for example the main city center) and tell them which one you assumed. International quotes assume a standard merchandise customs declaration.
Parameters (8)
- from_zipstringrequired
Origin US ZIP code (5 digits). Quotes are US-outbound only.
- to_zipstringrequired
Destination postal code: 5-digit ZIP for US, local postal code format otherwise (e.g. M5V 2T6 for Toronto)
- to_countrystring
Destination country as a 2-letter ISO code (default 'US')
- weightnumberrequired
Package weight
- weight_unitstring
Unit for weight, 'oz' or 'lb' (default 'lb')
- length_innumber
Package length in inches (optional)
- width_innumber
Package width in inches (optional)
- height_innumber
Package height in inches (optional)
get_postage_price
Get the current USPS First-Class postage price for a letter, large envelope (flat), or postcard mailed within the US — including how many Forever stamps to put on it and an exact combination of stamp denominations that covers the postage with no waste. Prices are zone-independent (same anywhere in the US). For boxes and parcels use get_shipping_rates instead.
Parameters (2)
- mail_classstringrequired
What is being mailed
- ouncesnumber
Weight in ounces (default 1; max 3.5 for letters, 13 for large envelopes)
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"shipping-rates": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://onlineshippingcalculator.com/api/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.