Free Shipping Threshold
free_shipping_thresholdFind the order value at which free shipping stops costing you money. PREMIUM (license).
Break-even is where the gross margin on the order covers the shipping you absorb. Typical input {"gross_margin_pct": 45, "ship_cost": 7.5, "current_aov": 38, "target_uplift_pct": 15} returns {"break_even": 16.67, "suggested_threshold": 43.7, "above_current_aov_by": 5.7, "rationale": "..."}.
Use when setting or defending a free-shipping bar. Not for what shipping should cost when it is not free — that is rate_card. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ship_cost | Yes | What one shipment actually costs you to send. | |
| current_aov | Yes | Your current average order value. | |
| gross_margin_pct | Yes | Gross margin on a typical order, e.g. 45 for 45%. Must be above 0 and at most 100. | |
| target_uplift_pct | No | How far above current AOV you want the threshold set, to pull baskets up. Default 0, which returns break-even. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||