Search Documentation
Search across all documentation pages
create_note
Create a new encrypted note in a vault, optionally inside a folder. The note content is encrypted before storage. Supports plain text or HTML content.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| title | string (1-1000 chars) | required | Note title |
| content | string (max 1,000,000 chars) | required | Note content (plain text or HTML) |
| vaultId | string (UUID) | optional | Vault ID to create the note in. Defaults to defaultVaultId if configured. |
| tags | string[] (max 50 tags, each max 100 chars) | optional | Optional tags |
| folderId | string (UUID) | optional | Optional folder ID to place the note in |
Returns#
The created note object with its ID, title, and vault assignment.
Example#
json
{
"tool": "create_note",
"arguments": {
"title": "API Design Guidelines",
"content": "All REST APIs must use snake_case for field names and return proper HTTP status codes.",
"tags": ["api", "guidelines", "engineering"]
}
}