Docs/MCP Tools/add_to_wishlist
MCP Tooladd_to_wishlistScope: wishlist:manage

Add to Wishlist

Bookmark an asset into the authenticated user's wishlist for future review.

Description

Add to Wishlist stores a target asset into the user's personal bookmarks. When an AI agent conducts broad catalog research and finds multiple appealing assets, it can bookmark them for the user to review in their web browser dashboard without performing immediate wallet purchases.

AI Agent Guidance & Best Practices

Invoke add_to_wishlist when a user says 'Save this for later' or 'Add this to my favorites'.

Input Arguments

1 parameters
ParameterTypeRequiredDefaultDescription
assetIdstringRequiredThe unique catalog asset identifier to bookmark.

Request Example

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

Response Schema Example

application/json
{
  "success": true,
  "message": "Asset added to wishlist."
}