delete_note
Permanently delete a note by its ID and return the removed content. Confirm the ID first because this action is irreversible and cannot be undone.
Instructions
Permanently delete the note with the given id and return what was removed.
This cannot be undone and the note's content is not recoverable, so confirm the id with list_notes or get_note before calling when the user identified the note by description rather than by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note_id | Yes | Id of the note to delete. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Identifier of the note that was deleted. | |
| title | Yes | Title of the note that was deleted. | |
| deleted | Yes | Always true; a missing note is an error, not a false here. |