Connects to the official Supercell Clash Royale API to query player stats, clan data, war logs, tournament info, rankings, and card details. Exposes tools for searching clans and tournaments, pulling clan member rosters, and fetching war history. Hosted through the Pipeworx gateway, which handles authentication and provides a streamable HTTP transport. Useful if you're building dashboards, clan management tools, or analytics for competitive Clash Royale play. You can call individual tools directly or use the ask_pipeworx interface to make natural language queries that get routed to the right endpoints automatically. Requires a Supercell developer key on the backend.
Clash Royale MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
clan_members | Clan members. |
clan_war_log | War log. |
clan_search | Clan search. |
tournament_search | Search tournaments. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"clash-royale": {
"url": "https://gateway.pipeworx.io/clash-royale/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Clash Royale data" })
The gateway picks the right tool and fills the arguments automatically.
MIT