cf-memory-mcp 2.3.0 → 2.6.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.
- package/README.md +36 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,16 +5,24 @@
|
|
|
5
5
|
|
|
6
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**, **temporal intelligence**, **multi-agent collaboration**, and **advanced analytics**.
|
|
7
7
|
|
|
8
|
-
## 🎯 Current Version: v2.
|
|
8
|
+
## 🎯 Current Version: v2.6.0
|
|
9
9
|
|
|
10
|
-
**Latest Features:**
|
|
11
|
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
10
|
+
**Latest Features (Phase 2 Enhancements):**
|
|
11
|
+
|
|
12
|
+
- 🚀 **Quality Auto-Improvement Engine** - AI-powered memory enhancement to boost quality scores from 27% to 60%+
|
|
13
|
+
- 🔧 **Content Expansion** - Intelligent AI analysis to expand short memories with relevant context
|
|
14
|
+
- 🏷️ **Smart Tag Enhancement** - Automatic tag suggestions and improvements for better organization
|
|
15
|
+
- ⚖️ **Importance Recalculation** - Dynamic importance scoring based on content analysis and usage patterns
|
|
16
|
+
|
|
17
|
+
**Previous Features (Phase 1 Enhancements):**
|
|
18
|
+
|
|
19
|
+
- 📊 **Memory Analytics Dashboard** - Real-time statistics and performance insights
|
|
20
|
+
- 🔍 **Advanced Search Filters** - Date range, importance, size, and boolean search
|
|
21
|
+
- 🏥 **Memory Health Monitoring** - Orphan detection and quality scoring
|
|
22
|
+
- 📈 **Performance Metrics** - Response time tracking and cache efficiency analysis
|
|
15
23
|
- 📤 **Rich Export/Import** - Multiple formats including graph visualization
|
|
16
24
|
|
|
17
|
-
**Total Tools Available:
|
|
25
|
+
**Total Tools Available: 36+** spanning memory management, relationships, temporal intelligence, and collaboration.
|
|
18
26
|
|
|
19
27
|
## 🚀 Quick Start
|
|
20
28
|
|
|
@@ -79,6 +87,14 @@ cf-memory-mcp
|
|
|
79
87
|
- **📦 Rich Metadata** - Full preservation of relationships and collaboration data
|
|
80
88
|
- **🔀 Conflict Handling** - Smart import strategies for existing memories
|
|
81
89
|
|
|
90
|
+
### 📊 Phase 1 Enhancements (v2.5.0)
|
|
91
|
+
|
|
92
|
+
- **📈 Memory Analytics Dashboard** - Real-time statistics, usage patterns, and performance metrics
|
|
93
|
+
- **🔍 Advanced Search Filters** - Date range, importance score, content size, and boolean search operators
|
|
94
|
+
- **🏥 Memory Health Monitoring** - Orphan detection, stale memory identification, and quality scoring
|
|
95
|
+
- **📊 Performance Insights** - Response time tracking, cache efficiency, and database performance
|
|
96
|
+
- **🎯 Quality Analysis** - Multi-factor quality scoring with improvement recommendations
|
|
97
|
+
|
|
82
98
|
### Advanced Features
|
|
83
99
|
|
|
84
100
|
- **🧠 Semantic Search** - AI-powered vector search using Cloudflare AI Workers
|
|
@@ -278,6 +294,19 @@ Calculate automatic importance score based on multiple factors.
|
|
|
278
294
|
|
|
279
295
|
**Returns:** Importance score with detailed factor analysis and reasoning.
|
|
280
296
|
|
|
297
|
+
### `improve_memory_quality`
|
|
298
|
+
|
|
299
|
+
**Quality Auto-Improvement Engine** - Enhance memory quality using AI to boost quality scores from 27% to 60%+.
|
|
300
|
+
|
|
301
|
+
**Parameters:**
|
|
302
|
+
- `memory_id` (string, optional) - Specific memory ID to improve. If not provided, improves batch of low-quality memories
|
|
303
|
+
- `batch_size` (number, optional) - Number of memories to process in batch (default: 20)
|
|
304
|
+
- `target_quality_threshold` (number, optional) - Target quality threshold - memories above this score are skipped (default: 60)
|
|
305
|
+
- `improvement_types` (array, optional) - Types of improvements to apply: content_expansion, importance_recalculation, tag_enhancement, relationship_building
|
|
306
|
+
- `dry_run` (boolean, optional) - If true, only analyze and suggest improvements without applying them
|
|
307
|
+
|
|
308
|
+
**Returns:** Detailed improvement report with before/after quality scores, applied changes, and quality statistics.
|
|
309
|
+
|
|
281
310
|
## 🧠 Intelligent Search & Collections (v2.0.0)
|
|
282
311
|
|
|
283
312
|
### `intelligent_search`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cf-memory-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "Best-in-class MCP (Model Context Protocol) server for AI memory storage with intelligent search, smart auto-features, memory collections, project onboarding workflows, and advanced lifecycle management",
|
|
5
5
|
"main": "bin/cf-memory-mcp.js",
|
|
6
6
|
"bin": {
|