check_inventory
Check current stock levels, reorder status, and supplier details for specific art supply products or categories to manage inventory effectively.
Instructions
Check current inventory levels for a specific product or category. Returns stock quantity, reorder status, and supplier information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search | Yes | Product name, SKU, or category to search for |
Input Schema (JSON Schema)
{
"properties": {
"search": {
"description": "Product name, SKU, or category to search for",
"type": "string"
}
},
"required": [
"search"
],
"type": "object"
}