📦 Pipeworx wger — 技能工具
v1.0.0Access a detailed exercise database with muscle groups, equipment info, and instructions to build and manage workout routines.
0· 5·0 当前·0 累计
安全扫描
OpenClaw
安全
high confidenceThe skill's requests and instructions are consistent with a read-only exercise database frontend that calls an external API (gateway.pipeworx.io); it does not request extra credentials or system access, but the service's provenance is unknown so verify the endpoint before use.
评估建议
This skill is internally consistent and appears to just proxy queries to an external workout database at gateway.pipeworx.io. Before using it: (1) consider privacy — any queries (including workout details or text you provide) will be sent to that external endpoint; (2) confirm the gateway's trustworthiness or look for an official homepage/source (none is listed); (3) because no credentials are declared, expect the service to accept unauthenticated calls or to require undocumented keys — be cauti...详细分析 ▾
✓ 用途与能力
Name/description (exercise database, muscles, equipment, routines) match the SKILL.md: the only actions are listing muscles/equipment and fetching exercises via an external JSON-RPC endpoint. No unrelated binaries, env vars, or config paths are requested.
✓ 指令范围
Instructions are narrowly scoped to calling the pipeworx gateway API (https://gateway.pipeworx.io/wger/mcp) with JSON-RPC 'tools/call' methods. The SKILL.md does not instruct reading local files, other env vars, or sending data to unexpected endpoints.
✓ 安装机制
There is no install spec and no code files — the skill is instruction-only and does not write anything to disk or install packages.
✓ 凭证需求
The skill declares no required environment variables, credentials, or config paths. That is proportionate for a read-only API client; however, the SKILL.md does communicate with an external service (gateway.pipeworx.io) so any data the agent sends will go to that endpoint.
✓ 持久化与权限
always is false and model invocation is allowed (default). The skill does not request persistent presence or elevated privileges and does not modify other skills' configurations.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/4/16
Initial release
● 无害
安装命令
点击复制官方npx clawhub@latest install pipeworx-wger
镜像加速npx clawhub@latest install pipeworx-wger --registry https://cn.longxiaskill.com镜像同步中
技能文档
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
list_exercises-- Browse exercises (English only). Returns name, description, category, primary and secondary muscles, and equipment needed. Default 20 results.get_exercise-- Full details for a specific exercise by its numeric ID.list_muscles-- Every muscle in the database with front/back body position.list_equipment-- All equipment types: barbell, dumbbell, kettlebell, gym mat, pull-up bar, etc.
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
list_musclesto identify target muscle IDs - Browse exercises with
list_exercises - Get full descriptions and equipment needs with
get_exercise
{
"mcpServers": {
"wger": {
"url": "https://gateway.pipeworx.io/wger/mcp"
}
}
}