Skills pipeworx-fruityvice
Nutritional data for fruits — calories, sugar, fat, protein, and carbs per 100g from Fruityvice
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/b-gutman/pipeworx-fruityvice" ~/.claude/skills/openclaw-skills-pipeworx-fruityvice && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/b-gutman/pipeworx-fruityvice" ~/.openclaw/skills/openclaw-skills-pipeworx-fruityvice && rm -rf "$T"
manifest:
skills/b-gutman/pipeworx-fruityvice/SKILL.mdsource content
Fruityvice
Look up nutritional facts for any fruit. Get calories, sugar, fat, protein, and carbohydrates per 100 grams. You can also filter fruits by nutritional ranges — perfect for finding low-sugar or high-protein fruit options.
Tools
— Nutritional info for a specific fruit by name (e.g., "banana", "mango")get_fruit
— Browse all available fruits with complete nutritional datalist_fruits
— Filter fruits by a nutrient range (e.g., sugar between 5 and 10 grams)get_by_nutrition
Example: look up a banana
curl -s -X POST https://gateway.pipeworx.io/fruityvice/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_fruit","arguments":{"name":"banana"}}}'
{ "name": "Banana", "family": "Musaceae", "genus": "Musa", "calories": 96, "fat": 0.2, "sugar": 17.2, "carbohydrates": 22, "protein": 1 }
Setup
{ "mcpServers": { "pipeworx-fruityvice": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/fruityvice/mcp"] } } }