clan
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Clan profile.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tag | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/clash-royale/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"clan","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
tag | string | Clan tag identifier |
name | string | Clan name |
type | string | Clan type |
description | string | Clan description |
badgeId | number | Badge ID |
clanScore | number | Clan score |
clanWarTrophies | number | Clan war trophies |
location | object | Clan location |
memberCount | number | Number of members |
requiredTrophies | number | Required trophies to join |
donationsPerWeek | number | Donations per week |
clanChestStatus | string | Clan chest status |
members | array | Clan members list |
Full JSON Schema
{
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Clan tag identifier"
},
"name": {
"type": "string",
"description": "Clan name"
},
"type": {
"type": "string",
"description": "Clan type"
},
"description": {
"type": "string",
"description": "Clan description"
},
"badgeId": {
"type": "number",
"description": "Badge ID"
},
"clanScore": {
"type": "number",
"description": "Clan score"
},
"clanWarTrophies": {
"type": "number",
"description": "Clan war trophies"
},
"location": {
"type": "object",
"description": "Clan location"
},
"memberCount": {
"type": "number",
"description": "Number of members"
},
"requiredTrophies": {
"type": "number",
"description": "Required trophies to join"
},
"donationsPerWeek": {
"type": "number",
"description": "Donations per week"
},
"clanChestStatus": {
"type": "string",
"description": "Clan chest status"
},
"members": {
"type": "array",
"description": "Clan members list"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clash-royale": {
"url": "https://gateway.pipeworx.io/clash-royale/mcp"
}
}
}
See Getting Started for client-specific install steps.