tournament
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Tournament info.
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":"tournament","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
tag | string | Tournament tag |
type | string | Tournament type |
status | string | Tournament status |
creatorTag | string | Creator player tag |
name | string | Tournament name |
description | string | Tournament description |
capacity | number | Maximum participants |
maxPlayers | number | Max players allowed |
members | number | Current member count |
createdTime | string | Creation timestamp |
startedTime | string | Start timestamp |
finishedTime | string | End timestamp |
standings | array | Tournament standings |
Full JSON Schema
{
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Tournament tag"
},
"type": {
"type": "string",
"description": "Tournament type"
},
"status": {
"type": "string",
"description": "Tournament status"
},
"creatorTag": {
"type": "string",
"description": "Creator player tag"
},
"name": {
"type": "string",
"description": "Tournament name"
},
"description": {
"type": "string",
"description": "Tournament description"
},
"capacity": {
"type": "number",
"description": "Maximum participants"
},
"maxPlayers": {
"type": "number",
"description": "Max players allowed"
},
"members": {
"type": "number",
"description": "Current member count"
},
"createdTime": {
"type": "string",
"description": "Creation timestamp"
},
"startedTime": {
"type": "string",
"description": "Start timestamp"
},
"finishedTime": {
"type": "string",
"description": "End timestamp"
},
"standings": {
"type": "array",
"description": "Tournament standings"
}
}
}
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.