luckin-mcp-proxy
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LUCKIN_MCP_URL | No | 上游地址,默认官方 | https://gwmcp.lkcoffee.com/order/user/mcp |
| LUCKIN_MCP_TOKEN | Yes | 瑞幸 MCP Bearer token |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| quickOrderA | 一句话点瑞幸:自然语言描述饮品(如「大杯冰美式不加糖」),自动用常用门店和口味偏好,返回订单预览和 draftId。不会直接下单,需用户确认后调 confirmOrder。 |
| confirmOrderA | 确认下单:传入 quickOrder/reorder 返回的 draftId,创建真实订单并返回支付链接。仅在用户明确确认后调用。 |
| reorderA | 一键复购上次成功订单,返回订单预览和 draftId,确认后调 confirmOrder。 |
| orderStatusA | 查询订单状态(取餐码、制作进度)。orderId 缺省时查最近一单。 |
| cancelOrderA | 取消订单。orderId 缺省时取消最近一单。 |
| searchProductA | 搜索瑞幸商品(自动重试不稳定的上游搜索),返回名称/价格/SKU/属性。 |
| findShopA | 按名称搜索瑞幸门店。首次使用需提供经纬度,之后用记忆的常用门店坐标。 |
| preferencesA | 查看或设置偏好:常用门店、默认口味(冰/热、糖度、杯型),并可查看最近订单与常点商品。 |
| rawCallA | 调试后门:直接透传调用瑞幸原始 MCP 工具(queryShopList/searchProductForMcp/queryProductDetailInfo/previewOrder/cancelOrder/queryOrderDetailInfo/switchProduct)。不允许 createOrder,下单必须走 quickOrder → confirmOrder。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Each tool has a clearly distinct purpose: order lifecycle (quickOrder, confirmOrder, cancelOrder, orderStatus, reorder), search (findShop, searchProduct), preferences, and a debug backdoor (rawCall). No overlap.
All tool names follow a consistent verbNoun camelCase pattern (e.g., cancelOrder, confirmOrder, findShop, searchProduct). No mixing of naming conventions.
9 tools is well-scoped for a coffee ordering assistant, covering search, ordering, cancellation, status, preferences, and a debug tool. Not excessive or insufficient.
The tool set covers the full ordering lifecycle: shop/product discovery, quick order and reorder, confirmation, cancellation, and status tracking. Preferences and a debug backdoor add completeness. No obvious gaps.