mcp_howtocook_getRecipeById
Retrieve detailed recipe information, including ingredients and instructions, by searching with a recipe name or ID using this tool from the HowToCook-MCP Server.
Instructions
根据菜谱名称或ID查询指定菜谱的完整详情,包括食材、步骤等
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 菜谱名称或ID,支持模糊匹配菜谱名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "菜谱名称或ID,支持模糊匹配菜谱名称",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}