zd_get_user
Pack: zendesk · Endpoint: https://gateway.pipeworx.io/zendesk/mcp
Get a Zendesk user by ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | User ID |
Example call
Arguments
{
"id": 98765
}
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_get_user","arguments":{"id":98765}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('zd_get_user', {
"id": 98765
});
Response shape
| Field | Type | Description |
|---|---|---|
user | object | User details |
Full JSON Schema
{
"type": "object",
"properties": {
"user": {
"type": "object",
"description": "User details",
"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"
},
"updated_at": {
"type": "string",
"description": "Last update timestamp"
}
}
}
}
}
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.