Wraps the Open Food Facts API so you can query nutrition data without dealing with auth or rate limits. Part of the Pipeworx gateway, which means you get access to their ask_pipeworx tool that lets you ask questions in plain English instead of calling specific endpoints. The gateway handles tool selection and parameter mapping automatically. Useful when you're building food tracking features, recipe analyzers, or anything that needs to look up product nutrition info on the fly. Runs over streamable HTTP, so setup is just dropping a URL into your MCP config. If you only need nutrition data, use the standalone endpoint. If you're already using Pipeworx for other integrations, it's bundled in there too.
Nutrition MCP — wraps Open Food Facts API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nutrition": {
"url": "https://gateway.pipeworx.io/nutrition/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ 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 Nutrition data" })
The gateway picks the right tool and fills the arguments automatically.
MIT