recipe_search
Pack: spoonacular · Endpoint: https://gateway.pipeworx.io/spoonacular/mcp
Search Spoonacular recipes with complex filters passed as query params (query keyword, cuisine, diet, intolerances, includeIngredients, excludeIngredients, maxReadyTime, sort, etc.). Returns recipe id, title, image, and ready-in minutes.
Example call
Arguments
{
"query": "pasta carbonara",
"number": 10
}
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_search","arguments":{"query":"pasta carbonara","number":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('recipe_search', {
"query": "pasta carbonara",
"number": 10
});
More examples
{
"cuisine": "italian",
"diet": "vegetarian",
"maxReadyTime": 30
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Complex recipe search results"
}
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.