stripe_connect_split
InactiveTool of org.scienceswarm/commerce-validators
Compute the Stripe Connect three-way split for one charge. Returns what the buyer pays, what Stripe takes, what the platform nets (its application fee), and what the connected seller nets — plus the platform's effective take rate. fee_bearer: 'seller' | 'platform' | 'buyer' (who absorbs the Stripe processing fee). Rates are editable; defaults are US card standard 2.9%+$0.30.
Parameters schema
{
"type": "object",
"title": "stripe_connect_splitArguments",
"required": [
"charge_amount"
],
"properties": {
"fee_bearer": {
"type": "string",
"title": "Fee Bearer",
"default": "seller"
},
"charge_amount": {
"type": "number",
"title": "Charge Amount"
},
"processing_pct": {
"type": "number",
"title": "Processing Pct",
"default": 2.9
},
"processing_fixed": {
"type": "number",
"title": "Processing Fixed",
"default": 0.3
},
"application_fee_pct": {
"type": "number",
"title": "Application Fee Pct",
"default": 0
},
"application_fee_fixed": {
"type": "number",
"title": "Application Fee Fixed",
"default": 0
}
}
}Parent server
org.scienceswarm/commerce-validators
https://github.com/vajdap/commerce-validators-mcp
1/7 registries