group
Pack: roblox · Endpoint: https://gateway.pipeworx.io/roblox/mcp
Group detail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
group_id | number | yes |
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
| Field | Type | Description |
|---|---|---|
id | number | Group ID |
name | string | Group name |
description | string | Group description |
owner | object | Group owner information |
memberCount | number | Number of group members |
created | string | Group creation date (ISO 8601) |
updated | string | Last updated date (ISO 8601) |
publicEntryAllowed | boolean | Whether 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.