zd_list_users

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

List Zendesk users.

Parameters

NameTypeRequiredDescription
pagenumbernoPage number

Example call

Arguments

{
  "page": 1
}

curl

curl -X POST https://gateway.pipeworx.io/zendesk/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"zd_list_users","arguments":{"page":1}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('zd_list_users', {
  "page": 1
});

Response shape

FieldTypeDescription
usersarrayList of users
countnumberTotal count of users
next_pagestring | nullURL to next page
Full JSON Schema
{
  "type": "object",
  "properties": {
    "users": {
      "type": "array",
      "description": "List of users",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "User ID"
          },
          "name": {
            "type": "string",
            "description": "User name"
          },
          "email": {
            "type": "string",
            "description": "User email"
          },
          "role": {
            "type": "string",
            "description": "User role"
          },
          "created_at": {
            "type": "string",
            "description": "Creation timestamp"
          }
        }
      }
    },
    "count": {
      "type": "number",
      "description": "Total count of users"
    },
    "next_page": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to next page"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026