# `bulk_create_contents`

_Content & calendar_

`write`

Create 1-20 content cards in one call (no AI). Each item has the create_content shape (title or idea required; optional status, scheduledDate, platforms, mediaType, category, funnelStage, hook, body, cta, caption). Cards are created in order at the bottom of their column; nothing is published. Not idempotent: calling twice creates the cards twice. Returns { contents, created }. The card's url opens it in Dalea: share it so the user can review and edit it there.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `items` | `array<object>` | yes |  |

## Example

### Prompt

```text
Add these 5 content ideas I just brainstormed straight onto my board.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "bulk_create_contents",
    "arguments": {
      "items": [
        {
          "title": "example title",
          "idea": "example idea"
        }
      ]
    }
  }
}
```

### 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":"bulk_create_contents","arguments":{"items":[{"title":"example title","idea":"example idea"}]}}}'
```
