search_ingredients
Find ingredients by searching across name, description, SKU, and barcode to quickly locate products in inventory management systems.
Instructions
Search for ingredients using full-text search across name, description, SKU, and barcode
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include | No | Related entities to include | |
| limit | No | Maximum number of results (default: 25) | |
| query | Yes | Search query string |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"description": "Related entities to include",
"type": "string"
},
"limit": {
"description": "Maximum number of results (default: 25)",
"type": "number"
},
"query": {
"description": "Search query string",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}