cf-memory-mcp 2.16.4 → 2.17.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.
- package/README.md +3 -3
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -199,7 +199,7 @@ await callTool('recommend_tools', {
|
|
|
199
199
|
|
|
200
200
|
// Returns:
|
|
201
201
|
// - Intent: "store_data" (95% confidence)
|
|
202
|
-
// - Top tools: store_memory, retrieve_memory,
|
|
202
|
+
// - Top tools: store_memory, retrieve_memory, unified_search
|
|
203
203
|
// - Workflows: New Project Setup, Collaboration Setup
|
|
204
204
|
```
|
|
205
205
|
|
|
@@ -366,9 +366,9 @@ Store a new memory with optional metadata and tags.
|
|
|
366
366
|
- `importance_score` (number, optional) - Importance score 0-10
|
|
367
367
|
- `metadata` (object, optional) - Additional metadata
|
|
368
368
|
|
|
369
|
-
#### `
|
|
369
|
+
#### `unified_search`
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
Unified search interface that consolidates all search modes: basic, intelligent, temporal, and vectorize.
|
|
372
372
|
|
|
373
373
|
**Parameters:**
|
|
374
374
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cf-memory-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.1",
|
|
4
4
|
"description": "Best-in-class MCP (Model Context Protocol) server for AI memory storage with Summary Memory Feature (TL;DR), Enhanced JSON Processing, Temporal Relationship Tracking, AI-Enhanced Context-Aware + Temporal Intelligence, Smart Tool Recommendation Engine, 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": {
|
|
@@ -98,8 +98,13 @@
|
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"@modelcontextprotocol/sdk": "^1.13.1",
|
|
101
|
+
"autoprefixer": "^10.4.21",
|
|
101
102
|
"chanfana": "^2.6.3",
|
|
102
103
|
"hono": "^4.6.20",
|
|
104
|
+
"postcss": "^8.5.6",
|
|
105
|
+
"react-dom": "^19.1.0",
|
|
106
|
+
"tailwindcss": "^4.1.11",
|
|
107
|
+
"tailwindcss-animate": "^1.0.7",
|
|
103
108
|
"uuid": "^11.0.4",
|
|
104
109
|
"zod": "^3.24.1"
|
|
105
110
|
},
|