skincare_cart
ActiveTool of La Luer — AI Skincare Commerce
Create a buyable shopping cart with a real checkout URL. Two modes: (1) Pass 'products' array with specific product names. (2) Pass 'query' string to auto-recommend and cart. Do not use for browsing or recommendations — use search_products or skincare_recommend first. Returns a widget with the cart items and a working checkout link.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"query": {
"type": "string",
"maxLength": 2000,
"description": "Natural language query to auto-recommend products. Only used if products array is not provided."
},
"products": {
"type": "array",
"items": {
"type": "string",
"maxLength": 200
},
"maxItems": 20,
"description": "Specific product titles to add to the cart"
},
"strategy": {
"type": "string",
"maxLength": 50,
"description": "Optional offer strategy override when using query mode"
}
},
"additionalProperties": false
}Parent server
La Luer — AI Skincare Commerce
https://github.com/nathangrotticelli/searchshopai
2/7 registries