AI agents can now buy Australian shipping labels โ Aramex Australia parcels and more. This remote MCP server wraps the Shippo shipping API with three tools: create_shipment (fetch rates + buy the cheapest label, returning a printable label_url and tracking_number), query_tracking, and refund_label (refund an unused label).
Aramex Australia parcels run on Shippo's master carrier account, so an AI agent can print an Aramex label with no Aramex contract and no merchant courier account โ just a free Shippo token. Already have your own carrier account on Shippo? Select it with the carrier parameter.
{
"mcpServers": {
"australia-logistics": {
"type": "http",
"url": "https://logi-au.wishpool.app/mcp",
"headers": {
"x-shippo-token": "shippo_test_your_test_or_shippo_live_prod_token"
}
}
}
}
Free TEST tokens (prefix shippo_test_โฆ) run the full flow end-to-end at no cost โ sign up with no card at apps.goshippo.com/join โ API. Production tokens (prefix shippo_live_โฆ) buy real labels. The token prefix auto-selects the environment; there is no separate demo endpoint.
Give create_shipment a to/from address and a parcel (dimensions in centimetres, weight in grams). It fetches every available carrier rate, buys the cheapest by default โ or the carrier/service you specify (e.g. Aramex / Parcel) โ and returns the label_url, tracking_number and the exact price paid in AUD.
x-agentpay-max-amount, x-agentpay-approval-above, x-agentpay-allowed-tools โ set by the human owner in client config; the agent cannot relax them. The label price is gated before any purchase.Cheapest-rate default; every result embeds numbered next_steps; every error teaches the fix; tracking status comes with the full enum (PRE_TRANSIT, TRANSIT, DELIVERED, RETURNED, FAILURE, UNKNOWN) and a plain-English hint.
UK labels (Royal Mail) live in uk-logistics-mcp; Germany (Deutsche Post) in germany-logistics-mcp; France (Mondial Relay) in france-logistics-mcp; US labels (USPS/UPS/FedEx) in usa-logistics-mcp; Taiwan CVS pickup & home delivery in taiwan-logistics-mcp. The same family covers local payments in 81 countries at mcp.wishpool.app, plus electronic-invoice servers across nine countries including Mexico CFDI, Brazil NF-e, Chile DTE, Peru CPE and India GST.