brawler

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

Single brawler.

Parameters

NameTypeRequiredDescription
idnumberyes

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

FieldTypeDescription
idnumberBrawler ID
namestringBrawler name
starPowersarray
gadgetsarray
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.

Regenerated from source · build May 21, 2026