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

FieldTypeDescription
usersarrayList of users
totalnumberTotal user count
skipnumberNumber of users skipped
limitnumberLimit 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.

Regenerated from source · build May 21, 2026