create_note
Create a new note. Content is encrypted (AES-256-CBC). HTML tags: h1-h6, p, a, br, strong, i, ul, ol, li. No scripts/iframes. Do NOT use between sections.
create_note
When to use
Create a new note. Content is encrypted (AES-256-CBC). HTML tags: h1-h6, p, a, br, strong, i, ul, ol, li. No scripts/iframes. Do NOT use between sections.
Parameters to validate before calling
title (string, required) — Note title (max 100 characters, must be unique)
content (string, required) — Note content (max 100,000 characters, will be encrypted). Allowed HTML: -, , , , , , , , . No scripts, iframes, or executable code.
pinned (boolean, optional) — Pin note to top of list (default: false)
Notes
Content is encrypted with AES-256-CBC
Do NOT put sensitive data in the title field — titles are not encrypted
Allowed HTML tags in content: h1-h6, p, a, br, strong, i, ul, ol, li
Do NOT use between sections — relies on natural HTML block spacing
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Note title (max 100 characters, must be unique) | |
| pinned | No | Pin note to top of list (default: false) | |
| content | Yes | Note content (max 100,000 characters, will be encrypted). Allowed HTML: <h1>-<h6>, <p>, <a>, <br>, <strong>, <i>, <ul>, <ol>, <li>. No scripts, iframes, or executable code. |