apple-notes-mcp 2.8.0 → 2.8.1

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.
Files changed (2) hide show
  1. package/build/index.js +1 -1
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -41363,7 +41363,7 @@ var AppleNotesManager = class {
41363
41363
  const runnable = [];
41364
41364
  ids.forEach((id, i) => {
41365
41365
  try {
41366
- runnable.push({ index: i, safe: sanitizeId(id) });
41366
+ runnable.push({ index: i, safe: sanitizeNoteId(id) });
41367
41367
  } catch (e) {
41368
41368
  results[i] = this.createBatchResult(
41369
41369
  id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apple-notes-mcp",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
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",