get_low_stock_items
Identify art supplies that need replenishment by finding items at or below reorder levels to prevent stockouts and maintain inventory availability.
Instructions
Get a list of all items that are at or below their reorder level. Critical for preventing stockouts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Optional: filter by category (Paint, Canvas, Brushes, Drawing, Tools) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional: filter by category (Paint, Canvas, Brushes, Drawing, Tools)",
"type": "string"
}
},
"type": "object"
}