user_presence
Pack: roblox · Endpoint: https://gateway.pipeworx.io/roblox/mcp
Presence for up to 100 user ids.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
user_ids | array | yes | |
items | number | no |
Example call
Arguments
{
"user_ids": [
1,
2,
3
]
}
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_presence","arguments":{"user_ids":[1,2,3]}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('user_presence', {
"user_ids": [
1,
2,
3
]
});
Response shape
| Field | Type | Description |
|---|---|---|
userPresences | array | Array of presence objects |
Full JSON Schema
{
"type": "object",
"description": "User presence information",
"properties": {
"userPresences": {
"type": "array",
"description": "Array of presence objects",
"items": {
"type": "object",
"properties": {
"userId": {
"type": "number",
"description": "User ID"
},
"userPresenceType": {
"type": "number",
"description": "Presence type (0=offline, 1=online, 2=in-game, 3=studio)"
},
"lastLocation": {
"type": "string",
"description": "Last known location"
},
"placeId": {
"type": "number",
"description": "Current place/game ID if in-game"
},
"rootPlaceId": {
"type": "number",
"description": "Root place ID if in-game"
},
"gameId": {
"type": "string",
"description": "Game session ID if in-game"
},
"universeId": {
"type": "number",
"description": "Universe ID if in-game"
},
"lastPresenceUpdate": {
"type": "string",
"description": "Last presence update timestamp"
}
}
}
}
}
}
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.