Skip to content

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#

ParameterTypeRequiredDescription
titlestring (1-1000 chars)requiredNote title
contentstring (max 1,000,000 chars)requiredNote content (plain text or HTML)
vaultIdstring (UUID)optionalVault ID to create the note in. Defaults to defaultVaultId if configured.
tagsstring[] (max 50 tags, each max 100 chars)optionalOptional tags
folderIdstring (UUID)optionalOptional 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"]
  }
}