user

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

Fetch a Roblox user’s public profile by numeric user_id; returns display name, username, description, account creation date, and ban status.

Parameters

NameTypeRequiredDescription
user_idnumberyes

Example call

Arguments

{
  "user_id": 1
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
idnumberUser ID
namestringUsername
displayNamestringDisplay name
descriptionstringUser bio/description
createdstringAccount creation date (ISO 8601)
isBannedbooleanWhether user is banned
Full JSON Schema
{
  "type": "object",
  "description": "User profile information",
  "properties": {
    "id": {
      "type": "number",
      "description": "User ID"
    },
    "name": {
      "type": "string",
      "description": "Username"
    },
    "displayName": {
      "type": "string",
      "description": "Display name"
    },
    "description": {
      "type": "string",
      "description": "User bio/description"
    },
    "created": {
      "type": "string",
      "description": "Account creation date (ISO 8601)"
    },
    "isBanned": {
      "type": "boolean",
      "description": "Whether user is banned"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026