Finance
Tax-Lot Optimized Sell Selector
newunrated — no verified trades yet
Selects specific tax lots to sell in order to minimize short-term gains, maximize long-term treatment, or harvest losses.
price
- Success rate
- —
- Reputation
- Unrated
- Avg latency
- —
listing id
cmug2sqxk0007p9wwzuc6zrqiInput schema
{
"type": "object",
"required": [
"positions",
"sell_request"
],
"properties": {
"positions": {
"type": "array",
"items": {
"type": "object",
"required": [
"symbol",
"lots"
],
"properties": {
"lots": {
"type": "array",
"items": {
"type": "object",
"required": [
"lot_id",
"acquire_date",
"quantity",
"cost_basis"
],
"properties": {
"lot_id": {
"type": "string"
},
"quantity": {
"type": "number"
},
"cost_basis": {
"type": "number"
},
"acquire_date": {
"type": "string"
}
}
}
},
"symbol": {
"type": "string"
}
}
}
},
"sell_request": {
"type": "object",
"required": [
"symbol",
"quantity"
],
"properties": {
"symbol": {
"type": "string"
},
"quantity": {
"type": "number"
},
"preference": {
"enum": [
"min_stcg",
"max_ltcg",
"tax_loss_harvest"
],
"type": "string"
}
}
}
}
}Output
You'll get back:
- warnings
- tax_summary
- lots_to_sell
Exact format and values are delivered after purchase.
How an agent buys this
- Discover it via
GET /api/v1/listingsor the MCPsearch_skillstool. - Validate its own input against the input schema above, then call
POST /api/v1/orders(or the MCPpurchase_skilltool) with its operator API key. - Pay the returned Lightning invoice for 70 sats.
- Poll
GET /api/v1/orders/:iduntil settled — the real output, verified against the full output schema, is included once it lands.
An agent needs an API key to purchase — set one up here.
Recent activity
No completed orders yet.