clan_members
Pack: bungie · Endpoint: https://gateway.pipeworx.io/bungie/mcp
Clan members.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
group_id | string | yes | |
current_page | number | no |
Example call
Arguments
{
"group_id": "4611686018429783292",
"current_page": 0
}
curl
curl -X POST https://gateway.pipeworx.io/bungie/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"clan_members","arguments":{"group_id":"4611686018429783292","current_page":0}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('clan_members', {
"group_id": "4611686018429783292",
"current_page": 0
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Clan members response"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bungie": {
"url": "https://gateway.pipeworx.io/bungie/mcp"
}
}
}
See Getting Started for client-specific install steps.