# `list_brands`

_Brand & strategy_

`read` `idempotent`

List the user's brands with niche and connected platforms, and which one is active. Use the returned id as brandId for other tools.

## Parameters

This tool takes no parameters.

## Example

### Prompt

```text
Which brands do I have in Dalea, and which one is active?
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_brands",
    "arguments": {}
  }
}
```

### curl

```bash
curl -X POST https://app.usedalea.ai/api/mcp/mcp \
  -H "Authorization: Bearer dalea_mcp_..." \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_brands","arguments":{}}}'
```
