# `schedule_content`

_Content & calendar_

`write` `idempotent`

Set the planned calendar date for a content card (the day it should be posted). Pass YYYY-MM-DD for a day (stored at noon UTC so the day is stable in every timezone) or a full ISO timestamp when the exact time matters. This only plans the date; it does not publish.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `contentId` | `string` | yes |  |
| `date` | `string` | yes |  |

## Example

### Prompt

```text
Schedule my next Reels script for this coming Friday.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "schedule_content",
    "arguments": {
      "contentId": "3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f",
      "date": "2026-10-01"
    }
  }
}
```

### 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":"schedule_content","arguments":{"contentId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f","date":"2026-10-01"}}}'
```
