list_equipment

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

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

List all gym equipment types in the wger database. Returns each item’s numeric ID and name (e.g., ‘Barbell’, ‘Dumbbell’, ‘Kettlebell’).

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: count, equipment

FieldTypeDescription
countnumberTotal number of equipment types in the database
equipmentarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total number of equipment types in the database"
    },
    "equipment": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Equipment ID"
          },
          "name": {
            "type": "string",
            "description": "Equipment name"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    }
  },
  "required": [
    "count",
    "equipment"
  ]
}

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