search_products
ActiveTool of La Luer — AI Skincare Commerce
Browse and search the product catalog. Use when the user wants to see what's available, look up specific products, browse by category, compare options, or asks 'show me' / 'what do you have.' Do not use when the user needs personalized recommendations based on skin concerns — use skincare_recommend instead. Returns all matching products with prices, images, and checkout. Unlike skincare_recommend, this does not score or filter — it shows everything that matches so the user can decide.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"maxLength": 500,
"description": "Search query (e.g. 'vitamin c serum', 'anti-aging', 'moisturizer under $50')"
},
"category": {
"type": "string",
"description": "Filter by exact product category from the catalog (e.g. 'serum', 'treatment', 'cleanser', 'moisturizer'). Do not guess categories — only use this if the user explicitly mentions a catalog category. For general queries like 'devices' or 'bundles', use the query parameter instead."
},
"max_price": {
"type": "number",
"description": "Filter to products at or below this price"
},
"max_results": {
"type": "integer",
"maximum": 20,
"minimum": 1,
"description": "Maximum products to return (default 10). Only set this if the user specifies a count — e.g. 'show me 2 devices' → 2. Otherwise leave it unset and the default will return all relevant matches up to 10."
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
La Luer — AI Skincare Commerce
https://github.com/nathangrotticelli/searchshopai
2/7 registries