cf-memory-mcp 1.1.3 → 2.0.0

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 +92 -1
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://badge.fury.io/js/cf-memory-mcp.svg)](https://badge.fury.io/js/cf-memory-mcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- A portable **MCP (Model Context Protocol)** server for AI memory storage using **Cloudflare infrastructure**. This package allows AI coding agents to store, retrieve, and search memories using a production-ready, serverless backend with **semantic search**, **batch operations**, and **graph traversal** capabilities.
6
+ A **best-in-class MCP (Model Context Protocol)** server for AI memory storage using **Cloudflare infrastructure**. This package provides AI coding agents with intelligent memory management featuring **smart auto-features**, **intelligent search**, **memory collections**, and **automated project onboarding workflows**.
7
7
 
8
8
  ## 🚀 Quick Start
9
9
 
@@ -28,6 +28,20 @@ cf-memory-mcp
28
28
  - **🔒 Secure** - Built on Cloudflare's secure infrastructure
29
29
  - **🚄 Fast** - Global edge deployment with KV caching
30
30
 
31
+ ### 🤖 Smart Auto-Features (v2.0.0)
32
+
33
+ - **🔗 Auto-Relationship Detection** - Automatically suggests relationships between memories
34
+ - **🔍 Duplicate Detection** - Identifies potential duplicates with merge strategies
35
+ - **🏷️ Smart Tagging** - AI-powered tag suggestions based on content analysis
36
+ - **⭐ Auto-Importance Scoring** - ML-based importance prediction with detailed reasoning
37
+
38
+ ### 🧠 Intelligent Search & Collections (v2.0.0)
39
+
40
+ - **🎯 Intelligent Search** - Combines semantic + keyword + graph traversal with query expansion
41
+ - **📚 Memory Collections** - Organize memories with auto-include criteria and sharing
42
+ - **🚀 Project Onboarding** - Automated workflows for project setup and knowledge extraction
43
+ - **🔄 Query Expansion** - Automatically includes synonyms and related terms
44
+
31
45
  ### Advanced Features
32
46
 
33
47
  - **🧠 Semantic Search** - AI-powered vector search using Cloudflare AI Workers
@@ -188,6 +202,83 @@ Get memories related to a specific memory with various options.
188
202
  - `include_indirect` (boolean, optional) - Include indirectly related memories
189
203
  - `max_hops` (number, optional) - Maximum hops for indirect relationships
190
204
 
205
+ ## 🤖 Smart Auto-Features (v2.0.0)
206
+
207
+ ### `suggest_relationships`
208
+
209
+ Get intelligent relationship suggestions for a memory without automatically creating them.
210
+
211
+ **Parameters:**
212
+ - `memory_id` (string, required) - Memory ID to suggest relationships for
213
+
214
+ **Returns:** Array of potential relationships with confidence scores and suggested actions.
215
+
216
+ ### `detect_duplicates`
217
+
218
+ Detect potential duplicate memories with similarity analysis and merge strategies.
219
+
220
+ **Parameters:**
221
+ - `memory_id` (string, optional) - Specific memory to check for duplicates
222
+
223
+ **Returns:** Array of potential duplicates with similarity scores and merge suggestions.
224
+
225
+ ### `suggest_tags`
226
+
227
+ Get AI-powered tag suggestions based on content analysis and existing patterns.
228
+
229
+ **Parameters:**
230
+ - `content` (string, required) - Content to analyze for tag suggestions
231
+ - `existing_tags` (array, optional) - Existing tags to exclude from suggestions
232
+
233
+ **Returns:** Suggested tags with confidence scores and reasoning.
234
+
235
+ ### `calculate_auto_importance`
236
+
237
+ Calculate automatic importance score based on multiple factors.
238
+
239
+ **Parameters:**
240
+ - `memory_id` (string, required) - Memory ID to calculate importance for
241
+
242
+ **Returns:** Importance score with detailed factor analysis and reasoning.
243
+
244
+ ## 🧠 Intelligent Search & Collections (v2.0.0)
245
+
246
+ ### `intelligent_search`
247
+
248
+ Advanced search combining semantic, keyword, and graph traversal with query expansion.
249
+
250
+ **Parameters:**
251
+ - `query` (string, required) - Natural language search query
252
+ - `auto_expand` (boolean, optional) - Automatically expand query with synonyms
253
+ - `include_related` (number, optional) - Include related memories (number of hops)
254
+ - `context_aware` (boolean, optional) - Apply context-aware ranking
255
+ - `project_context` (string, optional) - Project context for ranking
256
+
257
+ **Returns:** Search results with metadata about methods used and query expansion.
258
+
259
+ ### `create_collection`
260
+
261
+ Create a memory collection with optional auto-include criteria.
262
+
263
+ **Parameters:**
264
+ - `name` (string, required) - Collection name
265
+ - `description` (string, optional) - Collection description
266
+ - `auto_include_criteria` (object, optional) - Criteria for auto-populating collection
267
+ - `sharing_permissions` (object, optional) - Sharing and access permissions
268
+
269
+ ### `project_onboarding`
270
+
271
+ Smart workflow for automated project onboarding with knowledge extraction.
272
+
273
+ **Parameters:**
274
+ - `project_name` (string, required) - Name of the project
275
+ - `project_description` (string, optional) - Project description
276
+ - `technologies` (array, optional) - Technologies used in the project
277
+ - `team_members` (array, optional) - Team members
278
+ - `goals` (array, optional) - Project goals and objectives
279
+
280
+ **Returns:** Complete onboarding results with key concepts, relationship map, knowledge gaps, and documentation suggestions.
281
+
191
282
  ## 🌐 Architecture
192
283
 
193
284
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cf-memory-mcp",
3
- "version": "1.1.3",
4
- "description": "A portable MCP (Model Context Protocol) server for AI memory storage using Cloudflare infrastructure with semantic search, batch operations, and graph traversal",
3
+ "version": "2.0.0",
4
+ "description": "Best-in-class MCP (Model Context Protocol) server for AI memory storage with intelligent search, smart auto-features, memory collections, and project onboarding workflows",
5
5
  "main": "bin/cf-memory-mcp.js",
6
6
  "bin": {
7
7
  "cf-memory-mcp": "./bin/cf-memory-mcp.js"
@@ -28,7 +28,16 @@
28
28
  "batch-operations",
29
29
  "graph-traversal",
30
30
  "knowledge-graph",
31
- "embeddings"
31
+ "embeddings",
32
+ "intelligent-search",
33
+ "smart-features",
34
+ "auto-relationship",
35
+ "duplicate-detection",
36
+ "smart-tagging",
37
+ "memory-collections",
38
+ "project-onboarding",
39
+ "query-expansion",
40
+ "best-in-class"
32
41
  ],
33
42
  "repository": {
34
43
  "type": "git",