cf-memory-mcp 2.6.0 โ†’ 2.7.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 +86 -3
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -5,9 +5,17 @@
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.6.0
8
+ ## ๐ŸŽฏ Current Version: v2.7.0
9
9
 
10
- **Latest Features (Phase 2 Enhancements):**
10
+ **๐Ÿง  NEW: Memory Intelligence Engine (v2.7.0) - Autonomous Optimization:**
11
+
12
+ - ๐Ÿค– **Automated Learning Loops** - Self-improving algorithms with A/B testing framework
13
+ - ๐ŸŽฏ **Adaptive Thresholds** - Dynamic parameter optimization based on performance data
14
+ - ๐Ÿงช **Learning Experiments** - Scientific approach to testing optimization strategies
15
+ - ๐Ÿ“Š **A/B Testing Framework** - Rigorous experimentation with statistical analysis
16
+ - ๐Ÿ”„ **Autonomous Optimization** - System continuously improves itself without manual intervention
17
+
18
+ **Previous Features (Phase 2 Enhancements):**
11
19
 
12
20
  - ๐Ÿš€ **Quality Auto-Improvement Engine** - AI-powered memory enhancement to boost quality scores from 27% to 60%+
13
21
  - ๐Ÿ”ง **Content Expansion** - Intelligent AI analysis to expand short memories with relevant context
@@ -22,7 +30,7 @@ A **best-in-class MCP (Model Context Protocol)** server for AI memory storage us
22
30
  - ๐Ÿ“ˆ **Performance Metrics** - Response time tracking and cache efficiency analysis
23
31
  - ๐Ÿ“ค **Rich Export/Import** - Multiple formats including graph visualization
24
32
 
25
- **Total Tools Available: 36+** spanning memory management, relationships, temporal intelligence, and collaboration.
33
+ **Total Tools Available: 41+** spanning memory management, relationships, temporal intelligence, collaboration, and autonomous optimization.
26
34
 
27
35
  ## ๐Ÿš€ Quick Start
28
36
 
@@ -79,6 +87,17 @@ cf-memory-mcp
79
87
  - **โšก Conflict Resolution** - Smart merge strategies for concurrent edits
80
88
  - **๐Ÿ“Š Collaboration Analytics** - Track agent interactions and collaboration patterns
81
89
 
90
+ ### ๐Ÿง  Memory Intelligence Engine (v2.7.0)
91
+
92
+ - **๐Ÿค– Automated Learning Loops** - Self-improving algorithms that continuously optimize system performance
93
+ - **๐ŸŽฏ Adaptive Thresholds** - Dynamic parameter adjustment based on real-time performance data
94
+ - **๐Ÿงช Learning Experiments** - Create and manage A/B tests for optimization strategies
95
+ - **๐Ÿ“Š A/B Testing Framework** - Scientific experimentation with statistical analysis and confidence scoring
96
+ - **๐Ÿ”„ Improvement Cycles** - Autonomous optimization cycles that identify and apply performance enhancements
97
+ - **๐Ÿ“ˆ Predictive Analytics** - ML-powered predictions with >95% confidence targeting
98
+ - **๐ŸŽ›๏ธ Threshold Management** - Initialize and manage quality, relevance, importance, and relationship thresholds
99
+ - **๐Ÿ“‹ Experiment Analysis** - Automated analysis of test results with optimization recommendations
100
+
82
101
  ### ๐Ÿ“ค Advanced Export/Import (v2.3.0)
83
102
 
84
103
  - **๐Ÿ“‹ Multi-Format Export** - JSON, XML, Markdown, CSV, GraphML formats
@@ -582,6 +601,70 @@ Get collaboration event analytics.
582
601
  - `end_date` (string, optional) - End date for analytics
583
602
  - `limit` (number, optional) - Maximum number of results
584
603
 
604
+ ## ๐Ÿง  Memory Intelligence Engine (v2.7.0)
605
+
606
+ ### `initialize_adaptive_thresholds`
607
+
608
+ Initialize adaptive thresholds for automated learning optimization.
609
+
610
+ **Parameters:**
611
+
612
+ - `threshold_types` (array, optional) - Types of thresholds to initialize (quality, relevance, importance, relationship_strength)
613
+ - `baseline_values` (object, optional) - Optional baseline values for thresholds
614
+
615
+ **Returns:** Number of thresholds initialized and their current values.
616
+
617
+ ### `create_learning_experiment`
618
+
619
+ Create a new learning experiment for A/B testing and optimization.
620
+
621
+ **Parameters:**
622
+
623
+ - `experiment_name` (string, required) - Name of the experiment
624
+ - `experiment_type` (string, required) - Type of experiment (quality_improvement, relationship_discovery, tag_enhancement, content_expansion)
625
+ - `hypothesis` (string, required) - Hypothesis being tested
626
+ - `success_criteria` (object, required) - Success criteria for the experiment
627
+ - `control_group_size` (number, optional) - Size of control group (default: 100)
628
+ - `test_group_size` (number, optional) - Size of test group (default: 100)
629
+ - `confidence_threshold` (number, optional) - Statistical confidence threshold (default: 0.95)
630
+ - `created_by` (string, optional) - Creator of the experiment
631
+
632
+ **Returns:** Experiment ID and creation confirmation.
633
+
634
+ ### `run_ab_test`
635
+
636
+ Run A/B test for a specific learning experiment.
637
+
638
+ **Parameters:**
639
+
640
+ - `experiment_id` (string, required) - ID of the experiment to run
641
+ - `memory_ids` (array, required) - Memory IDs to include in the test
642
+ - `test_strategy` (string, optional) - Strategy for splitting test groups (random_split, importance_based, content_length_based)
643
+
644
+ **Returns:** Control and test group assignments with group sizes.
645
+
646
+ ### `analyze_experiment_results`
647
+
648
+ Analyze results from a learning experiment and make threshold adjustments.
649
+
650
+ **Parameters:**
651
+
652
+ - `experiment_id` (string, required) - ID of the experiment to analyze
653
+ - `include_recommendations` (boolean, optional) - Include optimization recommendations (default: true)
654
+
655
+ **Returns:** Number of adjustments made and optimization recommendations.
656
+
657
+ ### `run_improvement_cycle`
658
+
659
+ Run a complete self-improvement cycle with automated optimizations.
660
+
661
+ **Parameters:**
662
+
663
+ - `cycle_type` (string, optional) - Type of improvement cycle (full, quality_focused, relationship_focused, performance_focused)
664
+ - `max_improvements` (number, optional) - Maximum number of improvements to apply (default: 5)
665
+
666
+ **Returns:** Number of improvements applied, performance gain percentage, and next cycle scheduling.
667
+
585
668
  ## ๐ŸŒ Architecture
586
669
 
587
670
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cf-memory-mcp",
3
- "version": "2.6.0",
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",
3
+ "version": "2.7.0",
4
+ "description": "Best-in-class MCP (Model Context Protocol) server for AI memory storage with Memory Intelligence Engine, autonomous optimization, A/B testing, self-improving algorithms, 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": {
7
7
  "cf-memory-mcp": "./bin/cf-memory-mcp.js"
@@ -43,6 +43,15 @@
43
43
  "memory-validation",
44
44
  "smart-cleanup",
45
45
  "evolution-tracking",
46
+ "memory-intelligence-engine",
47
+ "automated-learning-loops",
48
+ "autonomous-optimization",
49
+ "a-b-testing",
50
+ "self-improving-algorithms",
51
+ "adaptive-thresholds",
52
+ "learning-experiments",
53
+ "performance-optimization",
54
+ "predictive-analytics",
46
55
  "best-in-class"
47
56
  ],
48
57
  "repository": {