# `list_contents`

_Content & calendar_

`read` `idempotent`

List the brand's content cards (board + calendar) as summaries: id, title, idea, status, platforms, postedAt, mediaType, category, funnelStage, format, updatedAt. Filters: status (idea | draft | edited | posted), platform (tiktok | instagram), mediaType (short_video | carousel | short_text), from/to (planned date range, YYYY-MM-DD or ISO), search (matches title or idea). Paginate with limit (default 50, max 100) and offset. Use get_content for the full script.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `status` | `string` | no |  |
| `platform` | `"tiktok" \| "instagram"` | no |  |
| `mediaType` | `"short_video" \| "carousel" \| "short_text"` | no |  |
| `from` | `string` | no |  |
| `to` | `string` | no |  |
| `search` | `string` | no |  |
| `limit` | `integer` | no |  |
| `offset` | `integer` | no |  |

## Example

### Prompt

```text
Show me all the drafts I still have not finished on my content board.
```

### JSON-RPC

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

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