mcp_howtocook_recommendMeals
Generate personalized meal plans and shopping lists based on dietary preferences, allergies, and number of people. Simplify weekly meal planning with tailored recipe recommendations.
Instructions
根据用户的忌口、过敏原、人数智能推荐菜谱,创建一周的膳食计划以及大致的购物清单
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allergies | No | 过敏原列表,如["大蒜", "虾"] | |
avoidItems | No | 忌口食材列表,如["葱", "姜"] | |
peopleCount | Yes | 用餐人数,1-10之间的整数 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}