cf-memory-mcp 3.8.4 → 3.8.6
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 +95 -669
- package/bin/cf-memory-mcp-indexer.js +149 -69
- package/bin/cf-memory-mcp.js +1205 -63
- package/package.json +15 -53
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cf-memory-mcp",
|
|
3
|
-
"version": "3.8.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.8.6",
|
|
4
|
+
"description": "Cloudflare-hosted MCP server for code indexing, retrieval, and assistant memory with a direct remote MCP endpoint and local stdio bridge.",
|
|
5
5
|
"main": "bin/cf-memory-mcp.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"cf-memory-mcp": "bin/cf-memory-mcp.js",
|
|
@@ -27,40 +27,12 @@
|
|
|
27
27
|
"npx",
|
|
28
28
|
"semantic-search",
|
|
29
29
|
"vector-search",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"knowledge-graph",
|
|
30
|
+
"code-indexing",
|
|
31
|
+
"assistant-memory",
|
|
33
32
|
"embeddings",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"duplicate-detection",
|
|
38
|
-
"smart-tagging",
|
|
39
|
-
"memory-collections",
|
|
40
|
-
"project-onboarding",
|
|
41
|
-
"query-expansion",
|
|
42
|
-
"lifecycle-management",
|
|
43
|
-
"memory-aging",
|
|
44
|
-
"relevance-scoring",
|
|
45
|
-
"memory-validation",
|
|
46
|
-
"smart-cleanup",
|
|
47
|
-
"evolution-tracking",
|
|
48
|
-
"memory-intelligence-engine",
|
|
49
|
-
"automated-learning-loops",
|
|
50
|
-
"autonomous-optimization",
|
|
51
|
-
"a-b-testing",
|
|
52
|
-
"self-improving-algorithms",
|
|
53
|
-
"adaptive-thresholds",
|
|
54
|
-
"learning-experiments",
|
|
55
|
-
"performance-optimization",
|
|
56
|
-
"predictive-analytics",
|
|
57
|
-
"progressive-disclosure",
|
|
58
|
-
"context-window-optimization",
|
|
59
|
-
"ai-powered-summaries",
|
|
60
|
-
"context-adaptation",
|
|
61
|
-
"token-management",
|
|
62
|
-
"expandable-content",
|
|
63
|
-
"best-in-class"
|
|
33
|
+
"code-retrieval",
|
|
34
|
+
"incremental-indexing",
|
|
35
|
+
"query-expansion"
|
|
64
36
|
],
|
|
65
37
|
"repository": {
|
|
66
38
|
"type": "git",
|
|
@@ -88,28 +60,18 @@
|
|
|
88
60
|
},
|
|
89
61
|
"scripts": {
|
|
90
62
|
"start": "node bin/cf-memory-mcp.js",
|
|
91
|
-
"test": "
|
|
63
|
+
"test": "npm run validate:simplified",
|
|
92
64
|
"test:simplified": "jest --config jest.simplified.config.js",
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"test:
|
|
96
|
-
"test:
|
|
97
|
-
"test:e2e": "jest --testPathPatterns=e2e",
|
|
98
|
-
"test:performance": "jest --testPathPatterns=performance",
|
|
99
|
-
"test:legacy": "node test/test-package.js",
|
|
100
|
-
"test:mcp": "node test/mcp-integration.test.js",
|
|
101
|
-
"test:benchmark": "node test/performance-benchmark.js",
|
|
102
|
-
"test:all": "npm run test && npm run test:mcp",
|
|
103
|
-
"test:full": "npm run test:coverage && npm run test:mcp && npm run test:benchmark",
|
|
65
|
+
"typecheck:simplified": "tsc -p tsconfig.simplified.strict.json --noEmit",
|
|
66
|
+
"validate:simplified": "npm run typecheck:simplified && npm run test:simplified -- --runInBand",
|
|
67
|
+
"test:watch": "jest --config jest.simplified.config.js --watch",
|
|
68
|
+
"test:all": "npm run validate:simplified",
|
|
104
69
|
"prepublishOnly": "echo 'Skipping tests for publishing - package tested manually'",
|
|
105
|
-
"deploy": "
|
|
70
|
+
"deploy": "./scripts/deploy.sh",
|
|
106
71
|
"dev": "wrangler dev",
|
|
107
72
|
"cf-typegen": "wrangler types",
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"setup-vectorize": "./scripts/setup-vectorize.sh",
|
|
111
|
-
"setup-paid-tier": "./scripts/setup-vectorize.sh && npm run deploy",
|
|
112
|
-
"migrate-to-vectorize": "node scripts/migrate-to-vectorize.js"
|
|
73
|
+
"validate": "npm run cf-typegen && npm run validate:simplified",
|
|
74
|
+
"setup:simplified": "./scripts/setup-simplified.sh"
|
|
113
75
|
},
|
|
114
76
|
"dependencies": {
|
|
115
77
|
"@modelcontextprotocol/sdk": "^1.16.0",
|