clan_current_war

Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp

Clash Royale official API — current war status for a clan tag: war state, collection-day and war-day results, participants, battles remaining, and standings.

Parameters

NameTypeRequiredDescription
tagstringyes

Example call

Arguments

{
  "tag": "#2CCCP"
}

curl

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":{"tag":"#2CCCP"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('clan_current_war', {
  "tag": "#2CCCP"
});

Response shape

FieldTypeDescription
statestringWar state
warStartTimestringWar start timestamp
battleTimestringBattle time
clanobjectClan info
participantsarrayClan participants
opponentobjectOpponent 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.

Regenerated from source · build July 6, 2026