users
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Paged users.
Example call
curl -X POST https://gateway.pipeworx.io/dummyjson/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"users","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
users | array | List of users |
total | number | Total user count |
skip | number | Number of users skipped |
limit | number | Limit of users returned |
Full JSON Schema
{
"type": "object",
"properties": {
"users": {
"type": "array",
"description": "List of users",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "User ID"
},
"firstName": {
"type": "string",
"description": "First name"
},
"lastName": {
"type": "string",
"description": "Last name"
},
"email": {
"type": "string",
"description": "Email address"
},
"phone": {
"type": "string",
"description": "Phone number"
},
"username": {
"type": "string",
"description": "Username"
},
"gender": {
"type": "string",
"description": "Gender"
},
"image": {
"type": "string",
"description": "Profile image URL"
}
}
}
},
"total": {
"type": "number",
"description": "Total user count"
},
"skip": {
"type": "number",
"description": "Number of users skipped"
},
"limit": {
"type": "number",
"description": "Limit of users returned"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dummyjson": {
"url": "https://gateway.pipeworx.io/dummyjson/mcp"
}
}
}
See Getting Started for client-specific install steps.