add_item
Add menu items to your Wingstop order by specifying item IDs, quantities, flavors for wings, and customizations. Use get_menu to find available items before adding.
Instructions
Add a menu item to the current order. Use get_menu to find item IDs, prices, and available flavors. For wings, always specify a flavor.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| menuItemId | Yes | Menu item ID from get_menu results | |
| name | Yes | Display name of the item | |
| quantity | No | Quantity to add (default: 1) | |
| price | Yes | Price per item in USD | |
| flavor | No | Wing or tender flavor (e.g. 'Lemon Pepper', 'Mango Habanero', 'Garlic Parmesan') | |
| size | No | Size if applicable (e.g. '6-piece', '10-piece', 'Large') | |
| customizations | No | Extra customizations as key-value pairs |