Use SF Express (顺丰速运) for shipment tracking, delivery anomaly triage, e-commerce seller/customer handoffs, shipping guidance, service-type comparison, outlet...
集成
Shippo
试用通过单一 MCP 连接获取多承运商实时运费、校验地址,并购买国内或国际运单。
它能做什么
通过 Shippo 官方托管 MCP 与按用户 OAuth 接入,仅暴露四个包装工具,统一调度地址校验、运费比价、单张或 CSV 批量购买运单、带 Webhook 的轨迹追踪以及运费成本分析等接口。国际件使用海关申报项与报关单,地址可从自由文本解析,也可按结构化字段校验。运单购买会直接扣款授权的 Shippo 账户,因此每次交易前必须与用户确认承运商、服务级别与费用。
什么时候用它
- 在结算页校验收件人地址
- 在结账流程中展示多家承运商实时报价
- 购买一张带报关信息的国内或国际运单
- 通过 CSV 文件批量生成运单
技能文档
Shippo Shipping Skill
Setup
MCP server: Shippo's hosted MCP at https://mcp.shippo.com, with per-user Shippo OAuth. You authorize once through Shippo on first use, with nothing to copy or configure, and the client refreshes the token automatically.
Point your MCP client at the hosted server:
{
"mcpServers": {
"shippo": {
"type": "http",
"url": "https://mcp.shippo.com"
}
}
}
On first use, your client runs the Shippo OAuth sign-in (in OpenClaw, openclaw mcp login shippo; in Claude Code, /mcp). No local Node process and nothing to store.
Prerequisites: A Shippo account and at least one carrier account (Shippo provides managed accounts for USPS, UPS, FedEx, DHL Express by default). See references/tool-reference.md for the full tool catalog.
Purchases are live: label purchases charge the authorized Shippo account for real. Confirm carrier, service, and cost with the user before any purchase.
Response envelope: The MCP wraps most API responses in a Speakeasy envelope shaped like {"ContentType": "application/json", "StatusCode": , "RawResponse": {}, "": {...actual response...}}. The payload field is named after the response schema on success (e.g. ParsedAddress, AddressPaginatedList, AddressValidationResultV2, AddressWithMetadataResponse, Shipment, CarrierAccountPaginatedList) and after the HTTP status code on some errors (e.g. fourHundredAndNineApplicationJsonObject for a 409, the body may be {}). To extract the payload, find the field whose key is not ContentType, StatusCode, or RawResponse, and branch on StatusCode for success vs error.
Non-envelope errors: Some failures bypass the envelope entirely and surface as an MCP-level error instead, the tool response has isError: true with a single text block containing a plaintext message like Unexpected API response status or content-type: Status 404 Content-Type application/json Body: {"detail":"Not found."}. Argument-validation failures come back as JSON-RPC error code -32602. Handle both paths when reporting errors to the user.
Best Practices
Latest Shippo API version: 2018-02-08. Send via the Shippo-API-Version header.
Using the Shippo MCP
The hosted Shippo MCP at https://mcp.shippo.com exposes exactly 4 tools (a meta-API), not the underlying operations directly:
shippo_list_tools: discover which operation you need.shippo_describe_tool: get that operation's input schema.shippo_read_execute_tool: run a read (lists, gets, lookups).shippo_write_execute_tool: run a write or mutation (creates, purchases, voids).
Every operation name in this skill (ValidateAddress, CreateShipment, CreateTransaction, GetTrack, etc.) is invoked through these wrappers, never called as a tool on its own. Standard discovery pattern: shippo_list_tools to find the operation, then shippo_describe_tool for its schema, then shippo_read_execute_tool or shippo_write_execute_tool to run it. The read/write split lets approval policies gate mutations separately. In the Claude apps these 4 tools may be deferred (loaded on demand), so an initial "tool has not been loaded yet" is normal: discover via the wrappers rather than guessing operation names.
Integration routing
| Building… | Recommended primitive | See |
|---|---|---|
| Checkout flow with live shipping rates | Rates at Checkout | Rate Shopping (+ shippo/references/rate-shopping-guide.md) |
| Single label purchase | Shipments + Transactions | Label Purchase |
| Bulk label generation from CSV | Batches + Manifests | Batch Shipping (+ shippo/references/csv-format.md) |
| Track packages across carriers | Tracking + webhooks | Tracking |
| Validate user addresses before save | Addresses v2 | Address Validation (+ shippo/references/address-formats.md) |
| Analyze shipping spend / optimize carriers | Shipments + Transactions list | Shipping Analysis |
| International shipments | Customs Items + Declarations | Label Purchase (+ shippo/references/customs-guide.md + shippo/references/international-shipping.md) |
Read the relevant skill or reference before answering integration questions or writing code.
Critical rules
- Always validate addresses before purchasing labels. Most "no rates" / "label failed" errors trace back to unvalidated addresses.
- Label purchases charge your live Shippo account for real. Always confirm carrier, service, and cost with the user before any purchase.
- Always confirm purchase before
CreateTransaction. Show carrier/service/cost/eta and require explicit user confirmation. - Parcel dimensions and weight must be strings, not numbers. Use
"10", never10. - Label URLs are S3 signed URLs. Always display the complete URL, truncating breaks the signature.
- Rates expire after 7 days. Re-create the shipment for fresh rates.
- By-id parameter names are case-sensitive (mostly PascalCase:
ShipmentId,TransactionId,OrderId). Use the exact name fromshippo_describe_tool; do not guess snake_case. - Never retry a 403/404 tool error with the same arguments. Ownership and not-found errors are permanent for those inputs; verify the ID via the matching
List*operation first. The genericAn internal error occurred. Please retry later.relay most often traces to an input issue too, so verify inputs before retrying, and retry the identical call at most once.
Response handling
The MCP wraps responses in a Speakeasy envelope. Some failures bypass the envelope. See shippo/references/response-envelope.md and shippo/references/error-reference.md for parsing logic and error-handling patterns.
Connecting
The hosted MCP at https://mcp.shippo.com uses per-user Shippo OAuth. You authorize once through Shippo (in Claude Code, run /mcp and sign in), and the session refreshes automatically. There is nothing to copy or configure. Once you are connected, the workflow guidance below is unchanged.
- Two 401 strings to recognize:
"Token does not exist": the credential is invalid, revoked, or for a different account. Re-authorize the Shippo OAuth session."Authentication credentials were not provided": no credential reached Shippo. The OAuth session is not authorized yet, or it has expired. Re-authorize the Shippo OAuth session.
Purchases are live
Label and batch purchases charge the authorized Shippo account for real money. Before any CreateTransaction or PurchaseBatch, show the carrier, service level, cost, and ETA, and get explicit user confirmation. Do not proceed without it.
Key documentation
- API Concepts: request shapes, versioning, auth
- Address Validation Guide: validation depth varies by country
- Customs Reference: incoterms, contents types, HS codes
- Carrier Accounts: managed vs custom accounts
- Webhooks: event types, signature verification
(Once Mintlify migration completes, .md URL suffixes will provide raw markdown access for AI agents.)
Address Validation
Address Field Format
The Shippo API uses v1 field names for address components in most endpoints (including CreateShipment). Always use:
| Field | Description | Example |
|---|---|---|
name | Full name | Jane Smith |
street1 | Street address line 1 | 731 Market St |
street2 | Street address line 2 (optional) | Suite 200 |
city | City | San Francisco |
state | State or province | CA |
zip | Postal code | 94103 |
country | ISO 3166-1 alpha-2 country code | US |
email | Email (required for international senders) | jane@example.com |
phone | Phone (required for international senders) | +1-555-123-4567 |
Note: CreateAddress and ValidateAddress take the v2 field names (address_line_1, city_locality, state_province, postal_code), but when passing addresses inline to CreateShipment, you must use the v1 names above.
Validate a Structured Address
- Collect at minimum:
street1,city,state,zip,country(ISO 3166-1 alpha-2). - Call
CreateAddresswith the address fields. This creates the address and returns an object ID. - Call
ValidateAddresswith the address fields to get validation results. Note: this endpoint takes address fields as query parameters, not an object ID. - Check
analysis.validation_result.valuein the response. Values:"valid","invalid", or"partially_valid"(address found with corrections applied). Checkanalysis.validation_result.reasonsfor details. - Report the standardized address back. Highlight any corrected fields (listed in
changed_attributes). Noteanalysis.address_type("residential","commercial", or"unknown") -- residential classification affects carrier surcharges. - If invalid: relay the reason descriptions. If the API returns a
recommended_address, present it to the user. - If
partially_valid: show what was corrected and ask the user to confirm the corrections are acceptable.
Parse a Freeform Address
- Call
ParseAddresswith the raw string (e.g., "123 Main St, Springfield IL 62704"). - Review the structured output for completeness. The parse response uses v2 field names:
address_line_1,city_locality,state_province,postal_code. - Note: the parse response does not include
country. You must ask the user for the country or infer it, then add it before proceeding. - Validate the parsed result by passing the fields to
CreateAddressthenValidateAddress(follow the structured address workflow above from step 2).
International Addresses
- Always require the
countryfield. Do not guess. - Pass non-Latin characters as-is; the API handles encoding.
- Validation depth varies by country. US, CA, GB, AU, and major EU countries have deep validation. Others may only confirm structural completeness. Inform the user of this limitation.
Bulk Address Validation
There is no batch validation endpoint. Call CreateAddress per address. Track results (row number, valid/invalid, corrections, errors, residential classification) and report a summary when done. For 50+ addresses, set expectations about processing time and provide progress updates.
Re-validate an Existing Address
Call ValidateAddress with the address fields. This endpoint validates by address fields, not by object ID.
Duplicate Addresses
If CreateAddress returns a "Duplicate address" error, the address already exists in the account. Retrieve it via ListAddresses or proceed directly to validation.
Quick Reference
Validate an address:
CreateAddress (saves address) + ValidateAddress (validates with same fields)
Parse then validate:
ParseAddress -> add country -> CreateAddress + ValidateAddress
Rate Shopping
Get Rates for a Shipment
- Collect: origin address, destination address, parcel (length, width, height, distance_unit, weight, mass_unit). All dimension and weight values must be strings (e.g.,
"10"not10). - Optionally validate both addresses with
ValidateAddress(see Address Validation). - Call
CreateShipmentwithaddress_from,address_to(as inline address objects using v1 field names --street1,city,state,zip,country-- not object IDs), andparcels. - The response
ratesarray contains available options. Present a table: carrier, service level, price, estimated days. - Note: the same carrier may return duplicate rates from multiple carrier accounts. Present the best rate per carrier/service combination.
- Each rate carries an
object_id. To buy a label, pass the chosen rate'sobject_idto the purchase flow (see Label Purchase); you do not re-send the address or parcel.
Rate Expiration
Rates expire after 7 days. If a user tries to purchase a rate that was retrieved more than 7 days ago, create a new shipment to get fresh rates.
Filter by Speed
Map user requests: "overnight" = estimated_days 1, "2-day" = estimated_days <= 2, "within N days" = estimated_days <= N. Filter the rates array accordingly. If nothing matches, show the fastest available option.
International Rates
Some carriers may return international rates without a customs declaration, but others will not. If no rates are returned, try attaching a customs declaration to the shipment. Some carriers also require a phone number on the destination address for international rate retrieval. Inform the user that customs will be required at label purchase time regardless. See shippo/references/customs-guide.md for customs details.
Checkout Rates (Line Items)
Call CreateLiveRate instead of CreateShipment. Accepts address_from, address_to, and line_items (each with title, quantity, total_price, currency, weight, weight_unit).
Rates in a Specific Currency
Call ListShipmentRatesByCurrencyCode with the preferred ISO currency code (USD, EUR, GBP, CAD, etc.).
Recommendation
Identify the cheapest (lowest amount), fastest (lowest estimated_days), and best-value options from the rates array. These are not API fields -- compute them by sorting the rates array yourself. State the trade-off: "Option A is $X cheaper but takes Y more days than Option B."
Troubleshooting: No Rates
- Verify both addresses passed validation (most common cause).
- Confirm parcel dimensions are reasonable (not zero, not exceeding carrier limits).
- Shippo provides managed carrier accounts by default for major carriers. If no rates are returned, the issue is more likely address validation, unsupported route, or parcel dimensions -- not missing carrier accounts. You can verify with
ListCarrierAccountsif needed. - Rates expire after 7 days. If stale, create a new shipment to get fresh rates.
Quick Reference
Get rates:
(optional) ValidateAddress (x2) -> CreateShipment (with inline addresses) -> read rates array
Label Purchase
Purchases Are Live
Label purchases charge the authorized Shippo account for real. Before purchasing, explicitly state "this will charge your Shippo account" with the carrier, service, and cost, and require the user to acknowledge. Do not purchase without that confirmation.
Purchase Confirmation Gate
Before every call to CreateTransaction, summarize the following and ask the user for explicit confirmation:
- Carrier and service level
- Estimated cost
- Estimated delivery time
- Origin and destination
Do not proceed without explicit user confirmation.
Domestic Label
- Optionally validate both addresses with
ValidateAddress(see Address Validation). - Call
CreateShipmentwithaddress_from,address_to(as inline address objects using v1 field names --street1,city,state,zip,country),parcels, andasync: false. - Present rates to the user. Let them choose.
- Confirm purchase (see Purchase Confirmation Gate above).
- Call
CreateTransactionwith:rate(selected rate object_id),label_file_type(defaultPDF_4x6),async: false. - Check response
status:SUCCESS: returntracking_number,label_url(display the COMPLETE URL -- S3 signed URLs break if truncated), andtracking_url_provider.QUEUED/WAITING: pollGetTransactionuntil resolved.ERROR: report messages from themessagesarray.
International Label
All domestic steps apply, plus customs handling before shipment creation. See shippo/references/customs-guide.md for the full customs workflow.
- Optionally validate addresses with
ValidateAddress. Sender must includeemailandphone. Ask if missing. - Create customs items: call
CreateCustomsItemper item (description, quantity, net_weight, mass_unit, value_amount, value_currency, origin_country, tariff_number). Alternatively, you can skip this step and pass inline item objects directly in the declaration (step 3). - Create the customs declaration: call
CreateCustomsDeclarationwith contents_type, non_delivery_option, certify: true, certify_signer, and the items (either object_ids from step 2, or inline item objects). Seeshippo/references/customs-guide.mdfor field details. - Call
CreateShipmentwith all standard fields pluscustoms_declaration(the declaration object_id). - Present rates, confirm purchase (see Purchase Confirmation Gate), then purchase label and return results as in the domestic flow.
Contents Type Decision Tree
Use this to determine the correct contents_type value:
| Scenario | Value |
|---|---|
| Selling to the recipient (commercial sale) | MERCHANDISE |
| Sending a free gift | GIFT |
| Sending a product sample | SAMPLE |
| Paper documents only | DOCUMENTS |
| Customer returning a purchased item | RETURN_MERCHANDISE |
| Charitable donation | HUMANITARIAN_DONATION |
| None of the above | OTHER (requires contents_explanation) |
Incoterms Decision Logic
The incoterm field on the customs declaration controls who pays duties and taxes:
- B2C / e-commerce (default): Use
DDU(Delivered Duty Unpaid) -- recipient pays duties at delivery. - Seller prepays duties: Use
DDP(Delivered Duty Paid) -- seller covers all duties and taxes. - FedEx/DHL only:
FCA(Free Carrier) is available for advanced trade scenarios.
If the user does not specify, default to DDU for standard e-commerce shipments.
Return Labels
To generate a return label, swap address_from and address_to so the original recipient becomes the sender and the original sender becomes the recipient. All other steps (shipment creation, rate selection, label purchase) remain the same.
Label Format Options
Default to PDF_4x6 unless the user specifies otherwise. Supported formats: PDF_4x6, PDF_4x8, PDF_A4, PDF_A5, PDF_A6, PDF, PDF_2.3x7.5, PNG, PNG_2.3x7.5, ZPLII.
Label Customization Options
When purchasing a label via CreateTransaction, the following options may be set on the shipment or rate:
- Signature confirmation: set
signature_confirmationon the shipment'sextrafield. Values:STANDARD,ADULT,CERTIFIED,INDIRECT,CARRIER_CONFIRMATION. - Insurance: set
insuranceon the shipment'sextrafield withamount,currency, andprovider. - Saturday delivery: set
saturday_deliverytotruein the shipment'sextrafield. Only supported by certain carriers and service levels. - Reference fields: pass
metadataon the transaction for order numbers or internal references.
Label from Existing Rate
If the user already has a rate object_id: optionally call GetRate to confirm details, then confirm purchase (see Purchase Confirmation Gate), then call CreateTransaction directly.
Voiding a Label
Call CreateRefund with the transaction object_id.
Refund limitations: Void/refund eligibility depends on carrier and timing. Not all labels can be refunded after purchase. If CreateRefund fails, advise the user to contact Shippo support.
Quick Reference
Domestic label:
(optional) ValidateAddress (x2) -> CreateShipment (with inline addresses) -> user picks rate -> confirm -> CreateTransaction
International label:
(optional) ValidateAddress (x2) -> CreateCustomsItem (per item) -> CreateCustomsDeclaration -> CreateShipment (with inline addresses + customs_declaration) -> user picks rate -> confirm -> CreateTransaction
Return label:
Same as domestic/international, but swap address_from and address_to.
Order-to-label:
CreateOrder -> CreateShipment (using order address/item data) -> user picks rate -> confirm -> CreateTransaction -> packing slip (REST fallback, see below)
Orders and Packing Slips
Use orders to represent e-commerce fulfillment requests. An order captures the shipping address, line items, and totals -- then feeds into the standard label purchase workflow.
Tools
CreateOrder: Create an order with line items, shipping address, and order details.GetOrder: Retrieve an order by its object_id.ListOrders: List all orders.- Packing slip (known gap): Generate a packing slip PDF for an order. There is no packing-slip tool in the MCP catalog. The underlying REST endpoint exists at
GET /orders/{ORDER_ID}/packingslip/(returns a 24-hour S3 PDF link). Fall back to a direct REST call, or advise the user to use the Shippo dashboard until the MCP gap is closed.
Workflow
- Call
CreateOrderwith the shipping address, line items (title, quantity, sku, total_price, etc.), and order-level fields. - Use the order's address and item data to call
CreateShipment, then follow the standard label purchase flow (rate selection, confirmation,CreateTransaction). - After purchasing the label, generate a packing slip via the REST fallback (see Tools above for the known MCP gap).
Tracking
Track by Number
- Determine carrier and tracking number. Carrier must be a lowercase Shippo token (e.g.,
usps,ups,fedex,dhl_express). Seeshippo/references/carrier-guide.mdfor tracking number format hints per carrier. If uncertain, ask the user. - Call
GetTrackwithcarrierandtracking_number. - Key response fields:
tracking_status(status, status_details, status_date, location),tracking_history,eta. - Each tracking event includes a
substatusobject withcode,text, andaction_required(boolean). Include substatus details when presenting tracking history -- these provide more specific information about what happened at each step. - Present: current status, location, ETA, substatus details, and chronological event history (most recent first).
Status Values
See shippo/references/carrier-guide.md for carrier-specific status nuances. Standard values:
| Status | Meaning |
|---|---|
| PRE_TRANSIT | Label created, carrier has not received the package |
| TRANSIT | Package is in transit |
| DELIVERED | Delivered |
| RETURNED | Being returned or returned to sender |
| FAILURE | Delivery failed |
| UNKNOWN | No tracking information from carrier |
The eta field is provided by most major carriers (USPS, UPS, FedEx, DHL Express) but availability is carrier-dependent, it may be null for regional carriers or for shipments before the carrier has finalized routing. Treat absence as informational, not as an error condition.
Find Trackable Packages
Call ListTransactions. Filter for object_status: SUCCESS. Each successful transaction has tracking_number and carrier info. Then call GetTrack for selected items.
Register a Tracking Webhook
- Get the user's HTTPS webhook URL.
- Call
createWebhookwithurlandevent: track_updated. - Optionally call
CreateTrackwith carrier and tracking number to register a specific shipment for push updates.
Quick Reference
Track a package:
GetTrack with carrier + tracking number
Find past shipment tracking:
ListTransactions -> filter SUCCESS -> GetTrack
Batch Shipping
Purchases Are Live
Batch purchases charge the authorized Shippo account for real. Before PurchaseBatch, show the shipment count, carrier/service, and estimated total cost, and require explicit user confirmation.
Purchase Confirmation Gate
Before every call to PurchaseBatch, summarize the following and ask the user for explicit confirmation:
- Total number of shipments to be purchased
- Carrier and service level (or selection rule if varied)
- Estimated total cost
- Number of domestic vs international shipments
Do not proceed without explicit user confirmation.
CSV Batch Processing
See shippo/references/csv-format.md for the column specification.
- Read and parse the CSV. Validate required columns are present. Report row count.
- Validate each row for non-empty required fields. Report invalid rows with reasons.
- Detect international rows (sender_country != recipient_country). Create customs declarations for those rows. See
shippo/references/customs-guide.md. Use correct customs enum values:RETURN_MERCHANDISE(notRETURN) for returned goods,HUMANITARIAN_DONATION(notHUMANITARIAN) for charitable donations. - Build the
batch_shipmentsarray with inline address and parcel objects per row. - Call
CreateBatchwith the array. - Poll
GetBatchuntil status isVALIDorINVALID. See Polling Intervals below. - If the status is
INVALID, some batch shipments failed validation: see "Fixing an INVALID batch" below, fix them, and re-poll untilVALID. Report per-shipment failures either way before proceeding. - Confirm purchase (see Purchase Confirmation Gate above).
- Call
PurchaseBatchto buy labels for all valid shipments. - Poll
GetBatchuntil status changes fromPURCHASINGtoPURCHASED. See Polling Intervals below. - Report: total attempted, succeeded, failed. For successes: tracking_number and label_url (complete URL). For failures: error messages.
Retrieving batch labels
A purchased batch does not put each label URL inline on the batch object. Each entry in batch_shipments[] carries a transaction field, which is a Transaction object_id. Call GetTransaction on it to get that shipment's label_url and tracking_number. The batch-level label_url is a merged multi-label PDF (up to 100 labels per file) and cannot be split per order.
Batch Size Guidance
For batches over 500 shipments, consider splitting into multiple batches. Large batches take longer to validate and purchase, and a single failure can be harder to diagnose.
Polling Intervals
- For batches under 100 shipments: poll every 3-5 seconds.
- For batches with 100+ shipments: poll every 5-10 seconds.
- Report progress to the user every 30 seconds.
- Stop after 60 retries and suggest the user check back later using
GetBatchwith the batch object_id.
Batch with Rate Shopping
- Call
CreateShipmentper shipment to get rate quotes (see Rate Shopping). - Present rates. User picks a service level rule (e.g., "cheapest for each" or a specific carrier/service).
- Build
batch_shipmentswithservicelevel_tokenper item. - Create, validate, confirm purchase, purchase, report as above.
Managing an Existing Batch
- Add shipments:
AddShipmentsToBatch(before purchase only). Note: adding an invalid shipment will change the entire batch status toINVALID. Check per-shipment statuses after adding. - Remove shipments:
RemoveShipmentsFromBatch(before purchase only).
Fixing an INVALID batch
If GetBatch returns status INVALID, one or more batch shipments failed validation and the batch cannot be purchased until they are fixed.
- Find the failures. Call
GetBatchwithobject_results=creation_failedto return only the failed shipments (paginate with?page=if there are many), or read eachbatch_shipments[].status(VALID/INVALID/INCOMPLETE/TRANSACTION_FAILED) and itsmessagesfor the reason. The batch-levelerrorsarray collects the same per-shipment failures in one place. - Fix them, either:
- Remove:
RemoveShipmentsFromBatchwith the failed batch-shipmentobject_ids (frombatch_shipments[].object_id, not the shipment object_id) to drop them, or - Correct and re-add:
AddShipmentsToBatchwith corrected shipment objects (fixed address, parcel, or servicelevel).
- Remove:
- Re-poll
GetBatchuntil status isVALID. - Then confirm purchase (see Purchase Confirmation Gate) and
PurchaseBatch.
End-of-Day Manifest
- Collect:
carrier_account(object_id),shipment_date(YYYY-MM-DD, default today),address_from(pickup address). - Optionally collect specific transaction object_ids to scope the manifest. You must pass specific transaction object_ids -- there is no auto-include for a date range.
- Call
CreateManifest. - Poll
GetManifestuntil status isSUCCESSorERROR. - Return the manifest PDF URL(s) and shipment count.
Quick Reference
CSV batch:
Parse CSV -> CreateCustomsDeclaration (international rows) -> CreateBatch -> poll GetBatch -> confirm -> PurchaseBatch -> poll GetBatch
Manifest:
CreateManifest (with transaction object_ids) -> poll GetManifest
Shipping Analysis
Geographic Cost Analysis
- Confirm origin address, destination list (or use representative cities), and parcel details.
- Call
ListCarrierAccountsto see configured carriers. - Call
CreateShipmentper destination to collect rates. Creating shipments is free; onlyCreateTransactioncosts money. - Write results to
analysis/directory (markdown report + CSV). Columns: Route, Destination, Carrier, Service, Cost, Currency, EstimatedDays, Zone.
Package Optimization
- Confirm the route.
- Define dimension profiles to test (or use user-provided ones).
- Check
ListCarrierParcelTemplatesandListUserParcelTemplatesfor flat-rate and saved templates. Seeshippo/references/rate-shopping-guide.mdfor dimensional weight and flat-rate guidance. - Call
CreateShipmentper profile on the same route. - Compare: cheapest rate, carrier options, fastest option per profile. Note where flat-rate templates beat custom dimensions and where dimensional weight causes price jumps. See
shippo/references/carrier-guide.mdfor carrier-specific weight limits and surcharges.
Carrier Comparison
- Call
CreateShipmentfor the route. - Group the
ratesarray byprovider. - Per carrier: cheapest service, fastest service, number of service levels, price range.
Historical Cost Optimization
- Call
ListShipmentsandListTransactionsto get past activity. - Cross-reference: what the user paid vs. what alternatives were available.
- Identify patterns: carrier concentration, service-level mismatch, consistent overpayment.
- For a sample of shipments with tracking numbers, call
GetTrackto check actual vs. estimated delivery times. - If fewer than 5 successful transactions exist (not just shipments -- shipments are rate quotes, transactions represent actual spend), redirect to forward-looking analysis.
Output Conventions
Write reports to the analysis/ directory. Create it if it does not exist. Include both markdown and CSV. CSV must have a header row. Markdown must include a timestamp and input parameters.
Quick Reference
Cost analysis:
ListCarrierAccounts -> CreateShipment (per destination) -> read rates arrays -> write report
Carrier comparison:
CreateShipment -> group rates by provider -> summarize
Historical review:
ListShipments + ListTransactions -> cross-reference -> GetTrack (sample) -> write report
Upgrades
The Shippo MCP is hosted at https://mcp.shippo.com. It is OAuth-only and auto-updates server-side, so there is nothing to install or upgrade on your side. This skill covers what stays your responsibility: API version awareness, webhook payload versioning, and troubleshooting the hosted session.
API version handling
The current Shippo API version is 2018-02-08. Shippo uses a single long-lived API version, and the hosted server manages it for you server-side. You do not set the Shippo-API-Version header yourself when going through the hosted MCP.
What backward-compatibility means in practice:
- Most changes are backward-compatible: new optional fields, new resources, additional webhook events. Existing calls keep working.
- Breaking changes are rare and announced via release notes.
- Because the server picks the version, you don't pin anything client-side. Your job is to handle new fields gracefully (see webhook versioning below) rather than to manage versions.
Shippo API changes are tracked in the API changelog. As of 2026-06, no recent breaking changes affect the workflows covered by this skill set.
Webhook event versioning
Webhook events can include new fields without bumping the API version. To handle them gracefully:
- Default to ignoring unknown fields in your webhook handler, never fail-closed on a field you don't recognize.
- Subscribe only to the specific event types you need (
track_updated,transaction_created,transaction_updated, etc.). - Verify webhook signatures using the
Shippo-Signatureheader per webhook docs.
Troubleshooting the hosted MCP
401 or 403 errors
The OAuth session has expired or is not authorized. Re-authorize the Shippo OAuth session: in Claude Code, run /mcp and sign in again.
Tools changed or missing after a server update
The hosted server auto-updates, so the tool catalog can shift without any action on your side. Re-list the current tools via shippo_list_tools to see what is available now.
"Not found" errors for objects you expect to exist
Most likely the object does not exist on the authorized account, or it belongs to a different account. Confirm you are signed in to the account that owns the object (re-authorize via /mcp if needed).
Auditing an existing integration
Before making a change to a production integration:
- Don't pin anything client-side. The hosted server manages the API version, so there's nothing to pin.
- Verify webhook handlers ignore unknown fields.
- Review the API changelog for any breaking changes.
- Re-list tools via
shippo_list_toolsafter an update to catch renamed or added operations.
Support Ticket Builder
Turn a single shipment identifier into a complete, classified, well-structured support package for the Shippo support team. The agent classifies the issue, gathers every relevant fact from the Shippo MCP (running issue-type-specific lookups, not just the lost-package set), computes the triage timeline, and emits two things:
- A human copy-paste block for the ticket body.
- A structured JSON block tagged with a routing queue, so the ticket can be piped into the ticketing system and land in the right pipeline without a human re-classifying it.
This dual output is the point: completeness and correct routing are what kill the back-and-forth.
Audience: Shippo support agents. Output uses Shippo terminology, object IDs, and an internal routing tag. It is not customer-facing copy.
When to use
Use this skill when someone wants to escalate or document a shipping problem and asks for a support ticket / message to Shippo support, e.g. "package is stuck," "label was charged but never shipped," "why was I charged more than the rate I saw," "refund this label I never used," "where is this delivery," "the address looks wrong," "tracking updates aren't coming through," "can't get rates from this carrier." It produces text + JSON to copy and paste; it does not open a Jira ticket or send Slack/email itself.
Step 1: Classify the issue (do this first)
Pick exactly one canonical issue type from the customer's description. The issue type drives both the routing tag and which extra lookups you run in Step 4. If the wording is ambiguous, ask one clarifying question before building.
| Issue type (canonical) | Triggers / signals | Routing tag |
|---|---|---|
lost_or_delayed | stuck, late, no movement, "where is my package", lost | queue:tracking-ops |
unused_label_refund | "never shipped", "refund this label", bought-but-unused | queue:billing-refunds |
billing_adjustment | "charged more than the rate", surcharge, reweigh, dim-weight, address-correction fee | queue:billing-adjustments |
address_exception | undeliverable, returned to sender, bad/invalid address, address correction | queue:address-exceptions |
customs_international | customs hold, duties/taxes, missing HS code, commercial invoice, international | queue:customs-intl |
carrier_account | "can't get rates from ", connection failed, registration pending | queue:carrier-onboarding |
tracking_webhook | "tracking updates aren't coming through", webhook not firing | queue:integrations |
other | anything that doesn't fit above | queue:general-triage |
The routing tags above are a stable, machine-parseable routing schema; the receiving team maps each
queue:*tag to its own ticketing queue, so the exact queue strings are configurable to match your support system. The skill's value is producing a consistent, machine-parseable tag; the exact strings should match your ticketing system.
Inputs accepted
The user may start from any one of these. Ask which one they have if it is ambiguous; do not guess an ID type.
| Input | What it anchors |
|---|---|
| Tracking number + carrier | Drives GetTrack directly. Best for delivery/lost-package issues. |
| Transaction (label) object ID | Cleanest anchor: label creation time + tracking number + the rate/shipment link, all derivable. |
| Shipment object ID | Gives from/to addresses, requested shipment_date, and rates; tracking number comes from the purchased transaction. |
Resolving a tracking number to its label. First detect the carrier and map it to the Shippo carrier token (see the note below), then call
GetTrack. When the label was purchased through Shippo, theGetTrackresponse carries the transactionobject_id; use that withGetTransactionto pull the label and billing facts. If the label was not bought through Shippo (no transaction comes back), there is nothing to resolve: build the ticket fromGetTrackplus whatever the user supplied and mark the label fields "Not available."ListTransactionshas no server-sidetracking_numberfilter, so paging it to match by hand is a rarely-useful last resort, not the primary path.
Carrier token:
GetTrackexpects a Shippo carrier token, not a display name, e.g.usps,ups,fedex,dhl_express,dhl_ecommerce,canada_post. If you only have a display name (often from a rate'sprovider), map it to the token. If unsure, ask the user for the carrier.
Shippo MCP tools used
Discover/confirm with shippo_list_tools and shippo_describe_tool; execute
read-only lookups with shippo_read_execute_tool. Everything this skill needs
is a read operation; never call a write tool (e.g. CreateRefund) from
this skill; the ticket only documents and recommends.
Core reads (all issue types):
GetTransaction: label creation time (object_created),tracking_number,status,ratereference,eta,metadata(order/internal reference)GetShipment:address_from,address_to, requested `s
相关技能
OKKI Go is a B2B prospecting engine for AI agents and sales teams. Use this skill to (1) search global companies, (2) unlock selected companies and view thei...
面向店铺经营者的电商操作手册,覆盖资金、库存、利润、渠道与税务,所有内容保存在本地笔记中。
Statement credits for one US credit card
Auto-create and manage digital products on Whop.com. Manages product lifecycle from creation to checkout link generation. Uses Whop REST API v1 with Company...
Auto-create and manage digital product listings on Etsy. Creates listings from existing digital product files (PDFs, templates, spreadsheets) using Etsy Open...