apple-notes-mcp 2.6.10 → 2.6.11
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 +17 -2
- package/build/index.js +10 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -71,9 +71,24 @@ The Codex plugin runs the published `apple-notes-mcp` server through `npx` and s
|
|
|
71
71
|
|
|
72
72
|
### Other Hosts (Hermes, Antigravity)
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
Two more hosts can run the same `apple-notes` MCP server (`npx -y apple-notes-mcp`):
|
|
75
75
|
|
|
76
|
-
- **[Hermes Agent](https://hermes-agent.nousresearch.com/)** (NousResearch) — Hermes has no plugin/marketplace drop-in
|
|
76
|
+
- **[Hermes Agent](https://hermes-agent.nousresearch.com/)** (NousResearch) — Hermes has no plugin/marketplace drop-in, so there is nothing in this repo to install from. Register the server with the CLI:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
hermes mcp add apple-notes --command npx --args -y apple-notes-mcp
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Or add it to `~/.hermes/config.yaml` by hand:
|
|
83
|
+
|
|
84
|
+
```yaml
|
|
85
|
+
mcp_servers:
|
|
86
|
+
apple-notes:
|
|
87
|
+
command: npx
|
|
88
|
+
args: ["-y", "apple-notes-mcp"]
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Restart your Hermes session afterward so the tools load.
|
|
77
92
|
- **[Antigravity](https://antigravity.google/)** (Google) — add the server entry from [`.antigravity-plugin/mcp_config.json`](https://github.com/sweetrb/apple-notes-mcp/blob/main/.antigravity-plugin/mcp_config.json) to `~/.gemini/config/mcp_config.json` (or via Antigravity's MCP settings).
|
|
78
93
|
|
|
79
94
|
### Using Claude Desktop
|
package/build/index.js
CHANGED
|
@@ -41871,6 +41871,14 @@ function describeSearchLimit(effectiveLimit, wasDefault, resultCount) {
|
|
|
41871
41871
|
return { info, truncationNote };
|
|
41872
41872
|
}
|
|
41873
41873
|
|
|
41874
|
+
// src/utils/searchScope.ts
|
|
41875
|
+
function describeSearchScope(searchContent, resultCount) {
|
|
41876
|
+
if (searchContent || resultCount > 0) {
|
|
41877
|
+
return "";
|
|
41878
|
+
}
|
|
41879
|
+
return "\n\n\u2139\uFE0F Only note titles were searched, so a term that appears in note bodies would not match. Retry with `searchContent: true` to search bodies instead.";
|
|
41880
|
+
}
|
|
41881
|
+
|
|
41874
41882
|
// src/tools/doctor.ts
|
|
41875
41883
|
import { spawnSync } from "child_process";
|
|
41876
41884
|
function runDoctor(manager) {
|
|
@@ -42191,8 +42199,9 @@ server.registerTool(
|
|
|
42191
42199
|
|
|
42192
42200
|
${syncWarnings.join(" ")}` : "";
|
|
42193
42201
|
if (notes.length === 0) {
|
|
42202
|
+
const scopeHint = describeSearchScope(searchContent, notes.length);
|
|
42194
42203
|
return successResponse(
|
|
42195
|
-
`No notes found matching "${query}" in ${searchType}${folderInfo}${dateInfo}${syncNote}`,
|
|
42204
|
+
`No notes found matching "${query}" in ${searchType}${folderInfo}${dateInfo}${scopeHint}${syncNote}`,
|
|
42196
42205
|
{ notes: [], count: 0 }
|
|
42197
42206
|
);
|
|
42198
42207
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apple-notes-mcp",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.11",
|
|
4
4
|
"description": "MCP server for Apple Notes - create, search, update, and manage notes via Claude and other AI assistants",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -89,6 +89,6 @@
|
|
|
89
89
|
"format:check": "prettier --check src",
|
|
90
90
|
"typecheck": "tsc --noEmit",
|
|
91
91
|
"sync:skills": "node scripts/sync-skills.mjs",
|
|
92
|
-
"version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin .agents/plugins codex .
|
|
92
|
+
"version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin .agents/plugins codex .antigravity-plugin"
|
|
93
93
|
}
|
|
94
94
|
}
|