get_items_by_category
Retrieve all menu items from a specified category to quickly access and organize coffee shop offerings by type.
Instructions
Get all menu items from a specific category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | The category name to filter by |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "The category name to filter by",
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}