Wraps three Edamam APIs (nutrition analysis, recipe search, and food database) into a single MCP endpoint via the Pipeworx gateway. You can call tools directly or use the ask_pipeworx function to query in plain English and let it route to the right API automatically. Useful when you're building meal planning features, analyzing nutritional content, or searching recipes and need those capabilities available to Claude without managing separate API integrations. Hosted remotely so there's no local setup, just point your MCP client at the gateway URL. Part of Pipeworx's larger collection of 832+ data sources if you need more than food and nutrition data.
Edamam MCP — wraps three Edamam APIs in one pack:
Part of Pipeworx — an MCP gateway connecting AI agents to 832+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"edamam": {
"url": "https://gateway.pipeworx.io/edamam/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 832+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Edamam data" })
The gateway picks the right tool and fills the arguments automatically.
MIT