brawler

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

Single brawler.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 16000000
}

curl

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":{"id":16000000}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('brawler', {
  "id": 16000000
});

More examples

{
  "id": 16000001
}

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 June 8, 2026