list_muscles

Pack: wger · Endpoint: https://gateway.pipeworx.io/wger/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/list_muscles for the schema, then POST the same URL with its arguments for the data.

List all muscles tracked in the wger database. Returns each muscle’s numeric ID, English name, and whether it is located on the front of the body.

Example call

Arguments

{}

curl

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_muscles","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_muscles', {});

Response shape

Always returns: count, muscles

FieldTypeDescription
countnumberTotal number of muscles in the database
musclesarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total number of muscles in the database"
    },
    "muscles": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Muscle ID"
          },
          "name": {
            "type": "string",
            "description": "Muscle name (English)"
          },
          "is_front": {
            "type": "boolean",
            "description": "Whether muscle is on front of body"
          }
        },
        "required": [
          "id",
          "name",
          "is_front"
        ]
      }
    }
  },
  "required": [
    "count",
    "muscles"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "wger": {
      "url": "https://gateway.pipeworx.io/wger/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026