Delete Note
delete_noteDeletes a note from Apple Notes, by ID or exact title. Like deleting it in the app, the note goes to "Recently Deleted" and Apple purges it after 30 days — the user can still recover it there. Requires confirm=true. The result is VERIFIED: the tool re-reads the note after deleting and reports the deletion as unverified if it is still where it was, so a success here means the note is really gone from list_notes/search_notes/read_note. Find note_id with list_notes or search_notes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | ||
| note_id | No | The note's id, as list_notes/search_notes report it. | |
| note_name | No | Exact title, when you don't have the id. If several notes share it, the first match is deleted — prefer note_id. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| name | No | ||
| deleted | No | True only when the deletion was VERIFIED by re-reading the note | |
| in_trash | No | The note moved to Recently Deleted (Apple purges it after 30 days) rather than vanishing outright | |
| verified | No | The note was re-read after deleting and is no longer where it was | |
| folder_after | No | Where it ended up (present when it moved instead of vanishing) | |
| next_actions | No | ||
| folder_before | No | The folder the note was in before deleting |