list_muscles

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

List all muscles tracked in the wger database.

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 May 9, 2026