apple-notes-mcp 2.8.6 → 2.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -323,6 +323,24 @@ Access.
|
|
|
323
323
|
|
|
324
324
|
---
|
|
325
325
|
|
|
326
|
+
#### `native-tags-status`
|
|
327
|
+
|
|
328
|
+
Checks whether exactly one configured Native Tags Shortcut is installed. An
|
|
329
|
+
installed workflow may still need macOS permission on its first execution.
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
#### `add-native-tags`
|
|
334
|
+
|
|
335
|
+
Adds actual native Notes tag objects to one exact note using `id`, a fresh
|
|
336
|
+
`expectedContentHash`, a distinctive existing `scopeText`, and `tags`. The
|
|
337
|
+
operation verifies the note's original text, links, and native objects after the
|
|
338
|
+
Shortcut runs. It refuses ambiguous title-and-scope matches and never retries an
|
|
339
|
+
uncertain write. Install the signed workflow as described in
|
|
340
|
+
[`shortcuts/README.md`](shortcuts/README.md).
|
|
341
|
+
|
|
342
|
+
---
|
|
343
|
+
|
|
326
344
|
#### `get-note-plaintext`
|
|
327
345
|
|
|
328
346
|
Retrieves a note's body as plain text, with no HTML markup.
|
|
@@ -659,6 +677,21 @@ Creates a new folder, including a whole nested hierarchy in one call.
|
|
|
659
677
|
|
|
660
678
|
---
|
|
661
679
|
|
|
680
|
+
#### `get-folder-by-id`
|
|
681
|
+
|
|
682
|
+
Reads one exact folder's current name and parent ID. Use these values with
|
|
683
|
+
`rename-folder`; this avoids relying on ambiguous folder names or paths.
|
|
684
|
+
|
|
685
|
+
---
|
|
686
|
+
|
|
687
|
+
#### `rename-folder`
|
|
688
|
+
|
|
689
|
+
Renames an existing folder in place using its exact `id`, `expectedName`,
|
|
690
|
+
`expectedParentId`, and `newName`. The operation preserves the folder ID, notes,
|
|
691
|
+
and descendants. It refuses stale metadata and a conflicting sibling name.
|
|
692
|
+
|
|
693
|
+
---
|
|
694
|
+
|
|
662
695
|
#### `delete-folder`
|
|
663
696
|
|
|
664
697
|
Deletes a folder.
|
|
@@ -835,6 +868,15 @@ Reads note metadata that AppleScript cannot expose, by querying the NoteStore SQ
|
|
|
835
868
|
|
|
836
869
|
---
|
|
837
870
|
|
|
871
|
+
#### `add-attachment`
|
|
872
|
+
|
|
873
|
+
Adds one nonempty local file of at most 64 MiB to an exact note using `id`, the
|
|
874
|
+
latest `expectedContentHash`, and an absolute `path`. The server never retries
|
|
875
|
+
the insertion. It verifies that existing rich content survived and compares the
|
|
876
|
+
fetched attachment bytes with the source before reporting success.
|
|
877
|
+
|
|
878
|
+
---
|
|
879
|
+
|
|
838
880
|
#### `list-attachments`
|
|
839
881
|
|
|
840
882
|
Lists attachments in a note.
|