recipe_information

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

Fetch full details for a Spoonacular recipe by numeric id. Returns title, ingredients, instructions, cuisines, diets, ready time, servings, source URL, and optionally full nutrition data if includeNutrition is true.

Parameters

NameTypeRequiredDescription
idnumberyes
includeNutritionbooleanno

Example call

Arguments

{
  "id": 715495
}

curl

curl -X POST https://gateway.pipeworx.io/spoonacular/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recipe_information","arguments":{"id":715495}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('recipe_information', {
  "id": 715495
});

More examples

{
  "id": 715495,
  "includeNutrition": true
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Recipe detail information"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "spoonacular": {
      "url": "https://gateway.pipeworx.io/spoonacular/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026