recipe_taste

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

Fetch taste profile scores for a Spoonacular recipe by id. Returns numeric scores for sweetness, saltiness, sourness, bitterness, savoriness, fattiness, and spiciness. Optionally normalize scores 0–100.

Parameters

NameTypeRequiredDescription
idnumberyes
normalizebooleanno

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

TypeScript (@pipeworx/sdk)

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

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

More examples

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

Response shape

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

Regenerated from source · build July 6, 2026