All tools
ToolDestructive
Delete portfolio holding
delete_portfolio_holdingYou need Prism portfolio tracking records, exposure, holdings, or research priority.
When to use it
You need Prism portfolio tracking records, exposure, holdings, or research priority.
Typical workflow
List portfolios, read exposure or priority, then mutate tracking records only if asked.
What it returns
Portfolio metadata, holdings, exposure, priority, or tracking mutations.
Avoid using it when
You need brokerage trades, account connections, or watchlist mutation.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View JSON Schema
{
"type": "object",
"properties": {
"holdingId": {
"type": "string",
"format": "uuid"
},
"confirm": {
"type": "boolean",
"const": true
}
},
"required": [
"holdingId",
"confirm"
],
"additionalProperties": false
}