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/brucegutman/pipeworx-wger" ~/.claude/skills/clawdbot-skills-pipeworx-wger && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-wger/SKILL.mdsource content
Wger (Workout Manager)
Exercise database with muscle groups, equipment, and detailed exercise descriptions. Useful for building workout routines, fitness apps, or answering "what exercises target my biceps?"
Tools overview
-- Browse exercises (English only). Returns name, description, category, primary and secondary muscles, and equipment needed. Default 20 results.list_exercises
-- Full details for a specific exercise by its numeric ID.get_exercise
-- Every muscle in the database with front/back body position.list_muscles
-- All equipment types: barbell, dumbbell, kettlebell, gym mat, pull-up bar, etc.list_equipment
Example: list exercises
curl -X POST https://gateway.pipeworx.io/wger/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_exercises","arguments":{"limit":10}}}'
Building a workout
- Use
to identify target muscle IDslist_muscles - Browse exercises with
list_exercises - Get full descriptions and equipment needs with
get_exercise
{ "mcpServers": { "wger": { "url": "https://gateway.pipeworx.io/wger/mcp" } } }