# `list_carousel_drafts`

_Studio_

`read` `idempotent`

List the brand's carousel drafts from the Carousel Studio (title, slide count, last edit). Use get_carousel_draft for the slide texts. Each draft has a url that opens it in the Dalea Carousel Studio: share it when the user wants to see or edit a carousel.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `limit` | `integer` | no |  |
| `offset` | `integer` | no |  |

## Example

### Prompt

```text
What carousel drafts do I have sitting in the Carousel Studio?
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_carousel_drafts",
    "arguments": {
      "brandId": "3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f",
      "limit": 1
    }
  }
}
```

### 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_carousel_drafts","arguments":{"brandId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f","limit":1}}}'
```
