Brawl Stars
live GamesBrawl 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
player Player profile.
No parameters required.
Try it
player_battles Recent battles.
No parameters required.
Try it
club Club profile.
No parameters required.
Try it
club_members Club members.
No parameters required.
Try it
brawlers Brawler list.
No parameters required.
Try it
brawler Single brawler.
No parameters required.
Try it
events_rotation Current event rotation.
No parameters required.
Try it
rankings_players Country player rankings.
No parameters required.
Try it
rankings_clubs Country club rankings.
No parameters required.
Try it
rankings_brawlers Country 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");