# `create_content`

_Content & calendar_

`write`

Create a new content card on the board/calendar (no AI). Requires a title or idea. status: idea | draft | edited | posted (default idea). scheduledDate (YYYY-MM-DD or ISO timestamp) sets the calendar date. 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 |  |
| `title` | `string` | no |  |
| `idea` | `string` | no |  |
| `hook` | `string` | no |  |
| `body` | `string` | no |  |
| `cta` | `string` | no |  |
| `caption` | `string` | no |  |
| `platforms` | `array<"tiktok" \| "instagram">` | no |  |
| `mediaType` | `"short_video" \| "carousel" \| "short_text"` | no |  |
| `category` | `string` | no |  |
| `funnelStage` | `string` | no |  |
| `status` | `"idea" \| "draft" \| "edited" \| "posted"` | no |  |
| `scheduledDate` | `string` | no |  |

## Example

### Prompt

```text
Add a content idea for next Thursday: 3 mistakes beginners make when editing Reels.
```

### JSON-RPC

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

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