create_todo
Create a new internal To-Do item. ADMIN ONLY: This tool requires admin privileges. Non-admin users will receive a 403 Forbidden error from the API. FORMAT: Only these HTML tags are allowed in description: , , , , . NEVER insert scripts, iframes, event handlers (onclick, onerror, etc.), style tags, or any executable code. SPACING: Do NOT use — it creates ugly blank blocks in the UI. Use for line breaks within text only.
create_todo
When to use
Create a new internal To-Do item. ADMIN ONLY: This tool requires admin privileges. Non-admin users will receive a 403 Forbidden error from the API. FORMAT: Only these HTML tags are allowed in description: , , , , . NEVER insert scripts, iframes, event handlers (onclick, onerror, etc.), style tags, or any executable code. SPACING: Do NOT use — it creates ugly blank blocks in the UI. Use for line breaks within text only.
Parameters to validate before calling
title (string, required) — To-Do title (max 200 characters).
priority (number, required) — one of: 1, 2, 3 — Priority level: 1 = Low, 2 = Medium, 3 = High.
description (string, optional) — Detailed description (max 20,000 characters). Allowed HTML: , , , , . No scripts, iframes, or executable code.
resource_affected (string, optional) — Resource affected (e.g. "renaissance", "api", "aws", "general"). Default: "general".
pin (boolean, optional) — Pin this To-Do to the top. Default: false.
deadline (string, optional) — Deadline date in ISO 8601 format (e.g. "2026-03-01").
Notes
Admin-only tool
Allowed HTML tags: b, strong, i, hr, br
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pin | No | Pin this To-Do to the top. Default: false. | |
| title | Yes | To-Do title (max 200 characters). | |
| deadline | No | Deadline date in ISO 8601 format (e.g. "2026-03-01"). | |
| priority | Yes | Priority level: 1 = Low, 2 = Medium, 3 = High. | |
| description | No | Detailed description (max 20,000 characters). Allowed HTML: <b>, <strong>, <i>, <hr>, <br>. No scripts, iframes, or executable code. | |
| resource_affected | No | Resource affected (e.g. "renaissance", "api", "aws", "general"). Default: "general". |