rankings_players
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Top players for location.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
locationId | number | yes | |
limit | number | 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":"rankings_players","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
items | array | Ranked players |
paging | object | Pagination info |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Player tag"
},
"name": {
"type": "string",
"description": "Player name"
},
"expLevel": {
"type": "number",
"description": "Experience level"
},
"trophies": {
"type": "number",
"description": "Trophy count"
},
"rank": {
"type": "number",
"description": "Ranking position"
},
"previousRank": {
"type": "number",
"description": "Previous ranking"
},
"arena": {
"type": "object",
"description": "Arena info"
},
"clan": {
"type": "object",
"description": "Clan info"
}
}
},
"description": "Ranked players"
},
"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.