ingredient_information

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

Fetch details for a Spoonacular ingredient by numeric id. Returns name, category, possible units, and nutrition data for the given amount and unit. Use ingredient_search to get the id first.

Parameters

NameTypeRequiredDescription
idnumberyes
amountnumberno
unitstringno

Example call

Arguments

{
  "id": 9160
}

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":"ingredient_information","arguments":{"id":9160}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": 9160,
  "amount": 100,
  "unit": "g"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Ingredient 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