Brawl Stars
liveGamesBrawl Stars official API — player profiles, club data, brawler details, event rotation, and country rankings.
BYO key only. Supercell keys are locked to the IP that generated them — generate yours with “Allow any IP” so it works through the gateway. Pass _apiKey on the gateway URL.
{
"mcpServers": {
"pipeworx-brawl-stars": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/brawl-stars/mcp?_apiKey=your_brawlstars_key"
]
}
}
}Tools
playerPlayer profile.
No parameters required.
Try it
player_battlesRecent battles.
No parameters required.
Try it
clubClub profile.
No parameters required.
Try it
club_membersClub members.
No parameters required.
Try it
brawlersBrawler list.
No parameters required.
Try it
brawlerSingle brawler.
No parameters required.
Try it
events_rotationCurrent event rotation.
No parameters required.
Try it
rankings_playersCountry player rankings.
No parameters required.
Try it
rankings_clubsCountry club rankings.
No parameters required.
Try it
rankings_brawlersCountry brawler rankings.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/brawl-stars/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/brawl-stars/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"player","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("player", {});// Or ask in plain English:
const answer = await px.ask("brawl stars official api — player profiles, club data, brawler details, event rotation, and country rankings");