rankings_brawlers

Pack: brawl-stars · Endpoint: https://gateway.pipeworx.io/brawl-stars/mcp

Country brawler rankings.

Parameters

NameTypeRequiredDescription
countryCodestringyes
brawlerIdnumberyes
limitnumberno
afterstringno
beforestringno

Example call

Arguments

{
  "countryCode": "US",
  "brawlerId": 16000000,
  "limit": 50
}

curl

curl -X POST https://gateway.pipeworx.io/brawl-stars/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"rankings_brawlers","arguments":{"countryCode":"US","brawlerId":16000000,"limit":50}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('rankings_brawlers', {
  "countryCode": "US",
  "brawlerId": 16000000,
  "limit": 50
});

More examples

{
  "countryCode": "BR",
  "brawlerId": 16000001
}

Response shape

FieldTypeDescription
itemsarray
pagingobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string",
            "description": "Player tag"
          },
          "name": {
            "type": "string",
            "description": "Player name"
          },
          "rank": {
            "type": "number",
            "description": "Ranking position"
          },
          "trophies": {
            "type": "number",
            "description": "Brawler trophies"
          }
        }
      }
    },
    "paging": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "properties": {
            "before": {
              "type": "string",
              "description": "Cursor for previous page"
            },
            "after": {
              "type": "string",
              "description": "Cursor for next page"
            }
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "brawl-stars": {
      "url": "https://gateway.pipeworx.io/brawl-stars/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 12, 2026