recipe
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Single recipe.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
Example call
curl -X POST https://gateway.pipeworx.io/dummyjson/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recipe","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Recipe ID |
name | string | Recipe name |
ingredients | array | List of ingredients |
instructions | array | Cooking instructions |
prepTimeMinutes | number | Prep time in minutes |
cookTimeMinutes | number | Cook time in minutes |
servings | number | Number of servings |
difficulty | string | Difficulty level |
cuisine | string | Cuisine type |
caloriesPerServing | number | Calories per serving |
tags | array | Recipe tags |
userId | number | User ID of recipe author |
image | string | Recipe image URL |
rating | number | Recipe rating |
reviewCount | number | Number of reviews |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Recipe ID"
},
"name": {
"type": "string",
"description": "Recipe name"
},
"ingredients": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of ingredients"
},
"instructions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Cooking instructions"
},
"prepTimeMinutes": {
"type": "number",
"description": "Prep time in minutes"
},
"cookTimeMinutes": {
"type": "number",
"description": "Cook time in minutes"
},
"servings": {
"type": "number",
"description": "Number of servings"
},
"difficulty": {
"type": "string",
"description": "Difficulty level"
},
"cuisine": {
"type": "string",
"description": "Cuisine type"
},
"caloriesPerServing": {
"type": "number",
"description": "Calories per serving"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recipe tags"
},
"userId": {
"type": "number",
"description": "User ID of recipe author"
},
"image": {
"type": "string",
"description": "Recipe image URL"
},
"rating": {
"type": "number",
"description": "Recipe rating"
},
"reviewCount": {
"type": "number",
"description": "Number of reviews"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dummyjson": {
"url": "https://gateway.pipeworx.io/dummyjson/mcp"
}
}
}
See Getting Started for client-specific install steps.