recipe

Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp

Single recipe.

Parameters

NameTypeRequiredDescription
idnumberyes

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

FieldTypeDescription
idnumberRecipe ID
namestringRecipe name
ingredientsarrayList of ingredients
instructionsarrayCooking instructions
prepTimeMinutesnumberPrep time in minutes
cookTimeMinutesnumberCook time in minutes
servingsnumberNumber of servings
difficultystringDifficulty level
cuisinestringCuisine type
caloriesPerServingnumberCalories per serving
tagsarrayRecipe tags
userIdnumberUser ID of recipe author
imagestringRecipe image URL
ratingnumberRecipe rating
reviewCountnumberNumber 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.

Regenerated from source · build May 21, 2026