@disco_trooper/apple-notes-mcp 1.5.0 → 1.5.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/README.md +6 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,23 +10,19 @@ MCP server for Apple Notes with semantic search and CRUD operations. Claude sear
10
10
 
11
11
  ## Features
12
12
 
13
- - **Chunk-Based Search** - Long notes split into chunks for accurate matching (NEW!)
14
- - **Query Caching** - 60x faster repeated searches (NEW!)
15
- - **Knowledge Graph** - Tags, links, and related notes discovery (NEW!)
13
+ - **Chunk-Based Search** - Long notes split into chunks for accurate matching
14
+ - **Query Caching** - 60x faster repeated searches
15
+ - **Knowledge Graph** - Tags, links, and related notes discovery
16
16
  - **Hybrid Search** - Vector + keyword search with Reciprocal Rank Fusion
17
17
  - **Semantic Search** - Find notes by meaning, not keywords
18
18
  - **Full CRUD** - Create, read, update, delete, and move notes
19
19
  - **Incremental Indexing** - Re-embed only changed notes
20
20
  - **Dual Embedding** - Local HuggingFace or OpenRouter API
21
21
 
22
- ## What's New in 1.4
22
+ ## What's New in 1.5
23
23
 
24
- - **Smart Refresh** - Search auto-reindexes changed notes. No manual `index-notes` needed.
25
- - **Batch Operations** - Delete or move multiple notes by title or folder.
26
- - **Purge Index** - Clear all indexed data when switching models or fixing corruption.
27
- - **Parent Document Retriever** - Splits long notes into 500-char chunks with 100-char overlap.
28
- - **60x faster cached queries** - Query embedding cache eliminates redundant API calls.
29
- - **4-6x faster indexing** - Parallel processing and batch embeddings.
24
+ - **List Notes with Sorting** - Sort by created, modified, or title; filter by folder; limit results.
25
+ - **Case-Insensitive Folders** - Folder filtering now matches regardless of case.
30
26
 
31
27
  ## Installation
32
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@disco_trooper/apple-notes-mcp",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "MCP server for Apple Notes with semantic search and CRUD operations",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",