club
Pack: brawl-stars · Endpoint: https://gateway.pipeworx.io/brawl-stars/mcp
Club profile.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tag | string | yes |
Example call
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","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
tag | string | Club tag |
name | string | Club name |
description | string | Club description |
type | string | Club type |
badgeId | number | Club badge ID |
requiredTrophies | number | Required trophies to join |
trophies | number | Club total trophies |
members | array |
Full JSON Schema
{
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Club tag"
},
"name": {
"type": "string",
"description": "Club name"
},
"description": {
"type": "string",
"description": "Club description"
},
"type": {
"type": "string",
"description": "Club type"
},
"badgeId": {
"type": "number",
"description": "Club badge ID"
},
"requiredTrophies": {
"type": "number",
"description": "Required trophies to join"
},
"trophies": {
"type": "number",
"description": "Club total trophies"
},
"members": {
"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"
}
}
}
}
}
}
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.