search_products
Find art supplies by name, category, or supplier to get detailed product information for inventory management and customer service.
Instructions
Search for products by name, category, or supplier. Returns detailed product information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterBy | No | Optional: category, supplier, or price_range | |
query | Yes | Search term |
Input Schema (JSON Schema)
{
"properties": {
"filterBy": {
"description": "Optional: category, supplier, or price_range",
"type": "string"
},
"query": {
"description": "Search term",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}