group

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

Group detail.

Parameters

NameTypeRequiredDescription
group_idnumberyes

Example call

Arguments

{
  "group_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":"group","arguments":{"group_id":1}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
idnumberGroup ID
namestringGroup name
descriptionstringGroup description
ownerobjectGroup owner information
memberCountnumberNumber of group members
createdstringGroup creation date (ISO 8601)
updatedstringLast updated date (ISO 8601)
publicEntryAllowedbooleanWhether public entry is allowed
Full JSON Schema
{
  "type": "object",
  "description": "Group detail information",
  "properties": {
    "id": {
      "type": "number",
      "description": "Group ID"
    },
    "name": {
      "type": "string",
      "description": "Group name"
    },
    "description": {
      "type": "string",
      "description": "Group description"
    },
    "owner": {
      "type": "object",
      "description": "Group owner information",
      "properties": {
        "id": {
          "type": "number",
          "description": "Owner user ID"
        },
        "name": {
          "type": "string",
          "description": "Owner username"
        }
      }
    },
    "memberCount": {
      "type": "number",
      "description": "Number of group members"
    },
    "created": {
      "type": "string",
      "description": "Group creation date (ISO 8601)"
    },
    "updated": {
      "type": "string",
      "description": "Last updated date (ISO 8601)"
    },
    "publicEntryAllowed": {
      "type": "boolean",
      "description": "Whether public entry is allowed"
    }
  }
}

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