tournament_search
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Search tournaments.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | |
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":"tournament_search","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
items | array | Search results |
paging | object | Pagination info |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"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 tag"
},
"name": {
"type": "string",
"description": "Tournament name"
},
"capacity": {
"type": "number",
"description": "Capacity"
},
"maxPlayers": {
"type": "number",
"description": "Max players"
},
"members": {
"type": "number",
"description": "Member count"
},
"createdTime": {
"type": "string",
"description": "Created timestamp"
},
"startedTime": {
"type": "string",
"description": "Started timestamp"
},
"finishedTime": {
"type": "string",
"description": "Finished timestamp"
}
}
},
"description": "Search results"
},
"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.