clan_current_war
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Current war.
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_current_war","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
state | string | War state |
warStartTime | string | War start timestamp |
battleTime | string | Battle time |
clan | object | Clan info |
participants | array | Clan participants |
opponent | object | Opponent clan info |
Full JSON Schema
{
"type": "object",
"properties": {
"state": {
"type": "string",
"description": "War state"
},
"warStartTime": {
"type": "string",
"description": "War start timestamp"
},
"battleTime": {
"type": "string",
"description": "Battle time"
},
"clan": {
"type": "object",
"description": "Clan info"
},
"participants": {
"type": "array",
"description": "Clan participants"
},
"opponent": {
"type": "object",
"description": "Opponent clan 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.