player

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

Player profile.

Parameters

NameTypeRequiredDescription
tagstringyes

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":"player","arguments":{}}}'

Response shape

FieldTypeDescription
tagstringPlayer tag identifier
namestringPlayer name
expLevelnumberExperience level
trophiesnumberCurrent trophy count
bestTrophiesnumberBest trophy count
winsnumberTotal wins
lossesnumberTotal losses
battleCountnumberTotal battles
threeCrownWinsnumberThree crown wins
challengeMaxWinsnumberChallenge max wins
challengeCardsWonnumberChallenge cards won
tournamentCardsWonnumberTournament cards won
clanobjectClan membership info
arenaobjectCurrent arena info
leagueStatisticsobjectLeague statistics
cardsarrayPlayer cards
currentDeckarrayCurrent deck cards
currentFavoriteDeckarrayCurrent favorite deck
Full JSON Schema
{
  "type": "object",
  "properties": {
    "tag": {
      "type": "string",
      "description": "Player tag identifier"
    },
    "name": {
      "type": "string",
      "description": "Player name"
    },
    "expLevel": {
      "type": "number",
      "description": "Experience level"
    },
    "trophies": {
      "type": "number",
      "description": "Current trophy count"
    },
    "bestTrophies": {
      "type": "number",
      "description": "Best trophy count"
    },
    "wins": {
      "type": "number",
      "description": "Total wins"
    },
    "losses": {
      "type": "number",
      "description": "Total losses"
    },
    "battleCount": {
      "type": "number",
      "description": "Total battles"
    },
    "threeCrownWins": {
      "type": "number",
      "description": "Three crown wins"
    },
    "challengeMaxWins": {
      "type": "number",
      "description": "Challenge max wins"
    },
    "challengeCardsWon": {
      "type": "number",
      "description": "Challenge cards won"
    },
    "tournamentCardsWon": {
      "type": "number",
      "description": "Tournament cards won"
    },
    "clan": {
      "type": "object",
      "description": "Clan membership info"
    },
    "arena": {
      "type": "object",
      "description": "Current arena info"
    },
    "leagueStatistics": {
      "type": "object",
      "description": "League statistics"
    },
    "cards": {
      "type": "array",
      "description": "Player cards"
    },
    "currentDeck": {
      "type": "array",
      "description": "Current deck cards"
    },
    "currentFavoriteDeck": {
      "type": "array",
      "description": "Current favorite deck"
    }
  }
}

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 May 21, 2026