This wraps the free Fruityvice API to give Claude access to nutritional data for fruits. You get two tools: get_fruit for looking up specific items like apples or bananas, and list_fruits to pull the full catalog. Both return calories, protein, fat, carbs, sugar, and fiber per 100g. It's hosted through Pipeworx's gateway, which lets you either connect to this single source or tap into their full collection of 673+ data sources. No authentication required. Useful when you're building nutrition apps, meal planners, or just need produce data without managing API keys.
Fruityvice MCP — wraps Fruityvice API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
get_fruit | Get nutritional facts for a specific fruit. Returns calories, protein, fat, carbs, sugar, and fiber per 100g (e.g., 'apple', 'banana'). |
list_fruits | List all available fruits with their nutritional profiles. Returns name, calories, protein, fat, carbs, sugar, and fiber for each. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"fruityvice": {
"url": "https://gateway.pipeworx.io/fruityvice/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 Fruityvice data" })
The gateway picks the right tool and fills the arguments automatically.
MIT