recipe_nutrition
Pack: spoonacular · Endpoint: https://gateway.pipeworx.io/spoonacular/mcp
Fetch the full nutrition breakdown for a Spoonacular recipe by id. Returns calories, macros (protein/fat/carbs), and detailed per-nutrient values including percent daily values.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
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_nutrition","arguments":{"id":715495}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('recipe_nutrition', {
"id": 715495
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Nutrition breakdown widget data"
}
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.