user

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

Fetch a single fake user by numeric id from DummyJSON. Returns full profile including name, email, phone, address, bank, company, and crypto wallet.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 1
}

curl

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":"user","arguments":{"id":1}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
idnumberUser ID
firstNamestringFirst name
lastNamestringLast name
emailstringEmail address
phonestringPhone number
usernamestringUsername
genderstringGender
imagestringProfile image URL
Full JSON Schema
{
  "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"
    }
  }
}

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 July 6, 2026