add_note
Create a new note with a title, body, and optional tags. Returns the note with its assigned ID for later reference.
Instructions
Create a new note with a title, body, and optional tags.
Returns the stored note, including its assigned ID — reference that ID in later get/update/delete calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Body text of the note (plain text or Markdown). | |
| tags | No | Optional tags to categorize the note, e.g. ['ideas', 'physics']. | |
| title | Yes | Title for the new note. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Unique numeric ID of the note. | |
| body | Yes | Full body text of the note. | |
| tags | Yes | Tags attached to the note. | |
| title | Yes | Title of the note. | |
| created_at | Yes | Creation time (ISO 8601, UTC). | |
| updated_at | Yes | Last modification time (ISO 8601, UTC). |