clan_members
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Clan members.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tag | string | yes | |
limit | number | no | |
after | string | no | |
before | string | no |
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_members","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
items | array | List of clan members |
paging | object | Pagination info |
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"
},
"expLevel": {
"type": "number",
"description": "Experience level"
},
"trophies": {
"type": "number",
"description": "Trophy count"
},
"arena": {
"type": "object",
"description": "Current arena"
},
"clanRank": {
"type": "number",
"description": "Rank in clan"
},
"previousClanRank": {
"type": "number",
"description": "Previous clan rank"
},
"donations": {
"type": "number",
"description": "Cards donated"
},
"donationsReceived": {
"type": "number",
"description": "Cards received"
},
"clanChestCrowns": {
"type": "number",
"description": "Clan chest crowns"
}
}
},
"description": "List of clan members"
},
"paging": {
"type": "object",
"properties": {
"cursors": {
"type": "object",
"description": "Pagination cursors"
}
},
"description": "Pagination info"
}
}
}
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.