create_note
Create a note by providing a unique title and optional content, then receive its generated ID for later retrieval or updates.
Instructions
Create a new note and return it, including the generated id to use in later calls.
Titles must be unique case-insensitively; creating a note whose title already exists is an error, so if the user wants to change an existing note, use update_note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short, distinctive title. Must be unique. | |
| content | No | Body of the note. May be empty. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Stable identifier for the note. | |
| title | Yes | Short human-readable title. | |
| content | Yes | Full note body. | |
| created_at | Yes | When the note was created (UTC, ISO 8601). | |
| updated_at | Yes | When the note was last modified (UTC, ISO 8601); equals `created_at` for a note that has never been updated. |