Break down payment-processor fees: fee, net, and effective rate. FREE.
Uses editable presets for stripe/paypal/square/shopify (verify current
rates) or your own custom_pct + custom_fixed. Typical input {"amount":
1000, "processor": "stripe", "transactions": 10} returns {"gross":
1000, "fee": 32.0, "net": 968.0, "effective_rate_pct": 3.2, "note":
"..."}.
Use when the charge amount is known and the net payout is the question.
Not for the reverse: the gross needed to net a target is charge_to_net. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "amount must be > 0, transactions >= 1"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Connector