exercises
Pack: api-ninjas · Endpoint: https://gateway.pipeworx.io/api-ninjas/mcp
API Ninjas exercises: fitness/gym exercises filtered by target muscle, type, difficulty, or name. Returns a list of { name, type, muscle, equipment, difficulty, instructions }. Example: exercises({ muscle: “biceps”, difficulty: “beginner” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
muscle | string | no | Target muscle, e.g. ‘biceps’, ‘chest’, ‘quadriceps’ |
type | string | no | Exercise type, e.g. ‘strength’, ‘cardio’, ‘stretching’ |
difficulty | string | no | Difficulty: ‘beginner’, ‘intermediate’, or ‘expert’ |
name | string | no | Exercise name to search for |
Example call
curl -X POST https://gateway.pipeworx.io/api-ninjas/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"exercises","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"api-ninjas": {
"url": "https://gateway.pipeworx.io/api-ninjas/mcp"
}
}
}
See Getting Started for client-specific install steps.