PS
Pulltrader Seller Economics
/calculate_required_sale_price
Find the sale price needed to reach a target net payout
Given a target take-home amount, compute the per-item sale price a trading-card seller must list at to net that amount on ONE selling method, after fees — eBay
liveunknown~5s typical
mcppulltradersellereconomics
$0.0020
per call
plus $0.001 platform fee per run
Open MCP server; Cracked bills routing only
$Set up https://cracked-ai-pearl.vercel.app/SKILL.md, then use Cracked to run mcp-app-pulltrader-seller-economics /calculate_required_sale_price for me.
Input
| Field | Type | Description |
|---|---|---|
| target_net* | number | The amount the seller wants to keep per item after fees. Net profit if acquisition_cost is |
| method | string (ebay | pulltrader_marketplace | pulltrader_fbp | pulltrader_storefront | pulltrader_pos | tcgplayer) | The single selling method to solve for. One of: ebay, pulltrader_marketplace, pulltrader_f default "ebay" |
| currency | string (USD) | ISO currency code. Only USD is supported. default "USD" |
| quantity | integer | Number of identical items in one order. Per-order fixed fees are applied once. default 1 |
| shipping_amount | number | Shipping amount charged to the buyer. Affects eBay's fee base. default 0 |
| item_category | string (trading_cards) | Item category. Only trading_cards is supported. default "trading_cards" |
| seller_plan | string (free | starter | pro | shop) | Pulltrader seller plan. Determines the marketplace payout tier (free=91%, starter=93%, pro default "free" |
| seller_covers_fees | boolean | If true, the seller absorbs the Pulltrader platform fee (3.25% + $0.40). If false (default default false |
| ebay_store_subscription | boolean | If true, estimate eBay fees using the eBay Store subscriber rate instead of the individual default false |
| acquisition_cost | number | Optional. What the seller paid for the card. When supplied, target_net is interpreted as n |
| ebay_fee_percent_override | number | Optional. Override the estimated eBay final value fee percentage. |
Call it
curl
curl https://cracked-ai-pearl.vercel.app/v1/run \
-H "Authorization: Bearer ck_live_..." -H "content-type: application/json" \
-d '{"provider":"mcp-app-pulltrader-seller-economics","endpoint":"/calculate_required_sale_price","input":{"target_net":1,"method":"ebay","currency":"USD","quantity":1,"shipping_amount":0,"item_category":"trading_cards","seller_plan":"free","seller_covers_fees":false,"ebay_store_subscription":false}}'cli
npx cracked-ai run -p mcp-app-pulltrader-seller-economics -e /calculate_required_sale_price -i '{"target_net":1,"method":"ebay","currency":"USD","quantity":1,"shipping_amount":0,"item_category":"trading_cards","seller_plan":"free","seller_covers_fees":false,"ebay_store_subscription":false}'mcp
run_tool({ provider: "mcp-app-pulltrader-seller-economics", endpoint: "/calculate_required_sale_price", input: {"target_net":1,"method":"ebay","currency":"USD","quantity":1,"shipping_amount":0,"item_category":"trading_cards","seller_plan":"free","seller_covers_fees":false,"ebay_store_subscription":false} })Try it
Runs against your signed-in workspace balance. Sign in if you have not.