meican_list_meal_tabs
Retrieve meal sessions (e.g., lunch, dinner) for a specified date. Each session includes an order deadline and indicates if a prior order exists, helping you avoid duplicate orders.
Instructions
List meal sessions ('餐次', e.g. 午餐, 晚餐) available for a given date. Each tab has a tab_unique_id and a target_time (the order deadline as 'YYYY-MM-DD HH:MM') which you pass verbatim to subsequent tools. Use this FIRST when the user wants to order or view orders for a day. If existing_order is non-null for a tab, the user has already ordered from it — surface that instead of placing a duplicate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date in YYYY-MM-DD (Asia/Shanghai). Defaults to today. | |
| namespace | No | Meican namespace for the user's organization or site. Only meican_whoami uses this to scope organization info and pickup addresses; other tools ignore it. | |
| access_token | No | Optional Meican access token (cookie 'sat' on www.meican.com). If omitted, the server reads MEICAN_ACCESS_TOKEN from its environment. | |
| refresh_token | No | Optional Meican refresh token (cookie 'srt'). If omitted, the server reads MEICAN_REFRESH_TOKEN from its environment. On HTTP 401 the server refreshes once and returns the rotated pair in `_rotation`; persist it before the next call. |