recipe_similar

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

Fetch Spoonacular recipes similar to a given recipe by id. Returns up to number similar recipes with title, image URL, ready time, and servings.

Parameters

NameTypeRequiredDescription
idnumberyes
numbernumberno

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": 715495,
  "number": 5
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Similar recipes"
}

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