apple-notes-mcp 2.8.8 → 2.8.9
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/shortcuts/README.md
CHANGED
|
@@ -19,3 +19,25 @@ The bridge receives a private temporary JSON file with a title, a distinctive
|
|
|
19
19
|
existing scope phrase, and normalized tags. Both the server and workflow refuse
|
|
20
20
|
ambiguous note selection. Server readback, rather than CLI output, establishes
|
|
21
21
|
success and verifies that existing content survived.
|
|
22
|
+
|
|
23
|
+
## Background Operations bridge
|
|
24
|
+
|
|
25
|
+
`Apple Notes MCP - Background Operations v5.shortcut` performs native append,
|
|
26
|
+
checklist and table creation, pin state changes, link insertion, and tag removal.
|
|
27
|
+
Its allowlist rejects unknown operations. It uses exact title plus distinctive
|
|
28
|
+
existing scope text, and the server verifies the note revision and preserved
|
|
29
|
+
rich content before accepting any result.
|
|
30
|
+
|
|
31
|
+
Regenerate and test the unsigned source with:
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
PYTHONDONTWRITEBYTECODE=1 python3 scripts/test-native-operations-shortcut.py
|
|
35
|
+
PYTHONDONTWRITEBYTECODE=1 python3 scripts/build-native-operations-shortcut.py
|
|
36
|
+
shortcuts sign --mode anyone \
|
|
37
|
+
--input "shortcuts/Apple Notes MCP - Background Operations v5.unsigned.shortcut" \
|
|
38
|
+
--output "shortcuts/Apple Notes MCP - Background Operations v5.shortcut"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Open the signed file and confirm **Add Shortcut** once. Do not install obsolete
|
|
42
|
+
workflow versions with the same display name; the server resolves one exact
|
|
43
|
+
installed UUID and refuses duplicates.
|