mcp_howtocook_whatToEat
Find personalized meal ideas based on the number of people. Input the group size, and get tailored dish recommendations for your next meal.
Instructions
不知道吃什么?根据人数直接推荐适合的菜品组合
Input Schema
Name | Required | Description | Default |
---|---|---|---|
peopleCount | Yes | 用餐人数,1-10之间的整数,会根据人数推荐合适数量的菜品 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"peopleCount": {
"description": "用餐人数,1-10之间的整数,会根据人数推荐合适数量的菜品",
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [
"peopleCount"
],
"type": "object"
}