recipes
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Paged recipes.
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":"recipes","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
recipes | array | List of recipes |
total | number | Total recipe count |
skip | number | Number of recipes skipped |
limit | number | Limit of recipes returned |
Full JSON Schema
{
"type": "object",
"properties": {
"recipes": {
"type": "array",
"description": "List of recipes",
"items": {
"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"
}
}
}
},
"total": {
"type": "number",
"description": "Total recipe count"
},
"skip": {
"type": "number",
"description": "Number of recipes skipped"
},
"limit": {
"type": "number",
"description": "Limit of recipes returned"
}
}
}
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.