brawlers
Pack: brawl-stars · Endpoint: https://gateway.pipeworx.io/brawl-stars/mcp
Brawler list.
Example call
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":"brawlers","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
items | array | |
paging | object |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Brawler ID"
},
"name": {
"type": "string",
"description": "Brawler name"
}
}
}
},
"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.