list_equipment
Pack: wger · Endpoint: https://gateway.pipeworx.io/wger/mcp
List all equipment types available 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_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
| Field | Type | Description |
|---|---|---|
count | number | Total number of equipment types in the database |
equipment | array |
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.