
Connects Claude to the Spoonacular food and nutrition API through the Pipeworx gateway. You get five tools: ingredient search and details, branded product search, wine recommendations, and unit conversion for recipe measurements. Free tier includes 150 requests per day, which covers casual meal planning and recipe work without hitting limits. The ask_pipeworx wrapper lets you query in natural language instead of calling tools directly. Worth noting this is part of a larger gateway that bundles 250+ data sources, so you can add just this endpoint or connect to the full Pipeworx hub if you need broader API access.
Spoonacular Food API MCP — recipes, nutrition, ingredients, meal planning. Free 150 req/day.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
PLATFORM_SPOONACULAR_KEY. BYO: ?_apiKey=….recipe_search(query?, cuisine?, excludeCuisine?, diet?, intolerances?, includeIngredients?, excludeIngredients?, type?, instructionsRequired?, fillIngredients?, addRecipeInformation?, addRecipeNutrition?, maxReadyTime?, sort?, sortDirection?, offset?, number?, ...) — complex searchrecipe_information(id, includeNutrition?) — recipe detailrecipe_random(tags?, number?) — random recipesrecipe_summary(id) — short summaryrecipe_similar(id, number?) — similar recipesrecipe_nutrition(id) — nutrition breakdownrecipe_ingredients(id) — ingredient listrecipe_taste(id, normalize?) — taste widgetrecipe_price_breakdown(id) — cost breakdowningredient_search(query, number?, sort?, intolerances?) — ingredient searchingredient_information(id, amount?, unit?) — ingredient detailproduct_search(query, minCalories?, maxCalories?, number?, offset?) — branded product searchproduct_information(id) — product detailmeal_plan_generate(timeFrame?, targetCalories?, diet?, exclude?) — generated meal planmeal_plan_week(targetCalories?, diet?, exclude?) — 7-day planwine_pairing(food, maxPrice?) — wine pairingwine_recommendation(wine, minRating?, price?, number?) — wine recommendationconvert_amount(ingredientName, sourceAmount, sourceUnit, targetUnit) — unit conversionhttps://api.spoonacular.com
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"spoonacular": {
"url": "https://gateway.pipeworx.io/spoonacular/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/spoonacular/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Spoonacular data" })
The gateway picks the right tool and fills the arguments automatically.
MIT