Edamam

live Data

Edamam MCP — wraps three Edamam APIs in one pack:

3 tools
0ms auth
free tier 50 calls/day

Tools

nutrition_analysis

Analyze the nutrition of a food ingredient or recipe line and return calories, weight, diet/health labels, and a macro breakdown. Example: nutrition_analysis({ ingredient: "1 cup rice and 10 oz chickp

No parameters required.

Try it
search_recipes

Search Edamam's recipe database by keyword with optional diet, health, and cuisine filters. Returns recipes with calories, time, servings, and ingredient lists. Example: search_recipes({ query: "chick

No parameters required.

Try it
search_food

Search Edamam's food database for foods matching a query and return per-100g macros (calories, protein, fat, carbs). Example: search_food({ query: "cheddar cheese", limit: 10 })

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/edamam/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/edamam/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"nutrition_analysis","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nutrition_analysis", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("edamam mcp — wraps three edamam apis in one pack:");