mcp_howtocook_recommendMeals
Generate personalized meal recommendations and weekly meal plans based on dietary restrictions, allergies, and number of people. Get recipe suggestions and shopping lists tailored to your specific needs.
Instructions
根据用户的忌口、过敏原、人数智能推荐菜谱,创建一周的膳食计划以及大致的购物清单
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| allergies | No | 过敏原列表,如["大蒜", "虾"] | |
| avoidItems | No | 忌口食材列表,如["葱", "姜"] | |
| peopleCount | Yes | 用餐人数,1-10之间的整数 |
Input Schema (JSON Schema)
{
"properties": {
"allergies": {
"description": "过敏原列表,如[\"大蒜\", \"虾\"]",
"items": {
"type": "string"
},
"type": "array"
},
"avoidItems": {
"description": "忌口食材列表,如[\"葱\", \"姜\"]",
"items": {
"type": "string"
},
"type": "array"
},
"peopleCount": {
"description": "用餐人数,1-10之间的整数",
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [
"peopleCount"
],
"type": "object"
}