brawler
Pack: brawl-stars · Endpoint: https://gateway.pipeworx.io/brawl-stars/mcp
Single brawler.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
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":"brawler","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Brawler ID |
name | string | Brawler name |
starPowers | array | |
gadgets | array |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Brawler ID"
},
"name": {
"type": "string",
"description": "Brawler name"
},
"starPowers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Star power ID"
},
"name": {
"type": "string",
"description": "Star power name"
}
}
}
},
"gadgets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Gadget ID"
},
"name": {
"type": "string",
"description": "Gadget name"
}
}
}
}
}
}
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.