club_members
Pack: brawl-stars · Endpoint: https://gateway.pipeworx.io/brawl-stars/mcp
Brawl Stars official API — paginated member list for a club tag: each member’s name, tag, trophies, role, and name color. Supports limit/after/before cursors.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tag | string | yes | |
limit | number | no | |
after | string | no | |
before | string | no |
Example call
Arguments
{
"tag": "#2CCCCCCCC",
"limit": 30
}
curl
curl -X POST https://gateway.pipeworx.io/brawl-stars/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"club_members","arguments":{"tag":"#2CCCCCCCC","limit":30}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('club_members', {
"tag": "#2CCCCCCCC",
"limit": 30
});
More examples
{
"tag": "#ABC12345",
"limit": 10,
"after": "#XYZ789"
}
Response shape
| Field | Type | Description |
|---|---|---|
items | array | |
paging | object |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Member tag"
},
"name": {
"type": "string",
"description": "Member name"
},
"role": {
"type": "string",
"description": "Member role"
},
"trophies": {
"type": "number",
"description": "Member trophies"
}
}
}
},
"paging": {
"type": "object",
"properties": {
"cursors": {
"type": "object",
"properties": {
"before": {
"type": "string",
"description": "Cursor for previous page"
},
"after": {
"type": "string",
"description": "Cursor for next page"
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"brawl-stars": {
"url": "https://gateway.pipeworx.io/brawl-stars/mcp"
}
}
}
See Getting Started for client-specific install steps.