Docs/MCP Tools/remove_from_wishlist
MCP Toolremove_from_wishlistScope: wishlist:manage

Remove from Wishlist

Remove an asset from the user's saved wishlist.

Description

Remove from Wishlist deletes an asset reference from the user's saved items queue.

AI Agent Guidance & Best Practices

Invoke when a user asks to clear or remove a specific bookmark.

Input Arguments

1 parameters
ParameterTypeRequiredDefaultDescription
assetIdstringRequiredThe unique catalog asset identifier to remove from the wishlist.

Request Example

{
  "jsonrpc": "2.0",
  "id": "call_15",
  "method": "tools/call",
  "params": {
    "name": "remove_from_wishlist",
    "arguments": {
      "assetId": "ast_cyber_car"
    }
  }
}

Response Schema Example

application/json
{
  "success": true,
  "message": "Asset removed from wishlist."
}