Wraps the wger Workout Manager REST API so you can pull exercise data, muscle groups, and equipment types into Claude without authentication. You get four tools: list and retrieve exercises by ID, plus reference lists for muscles and equipment. All exercise data comes back in English only. Useful when you're building fitness apps, workout planners, or anything that needs a structured exercise database. Part of the Pipeworx gateway, which means you can either connect to this specific server or tap into their full collection of 250+ data sources through a single endpoint with natural language queries.
Wger MCP — wraps wger Workout Manager REST API (free, no auth for read)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
list_exercises | List exercises from the wger database (English language only). |
get_exercise | Get detailed information for a specific exercise by its numeric ID. |
list_muscles | List all muscles tracked in the wger database. |
list_equipment | List all equipment types available in the wger database. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"wger": {
"url": "https://gateway.pipeworx.io/wger/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 Wger data" })
The gateway picks the right tool and fills the arguments automatically.
MIT