cf-memory-mcp 3.4.0 → 3.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/bin/cf-memory-mcp.js +10 -1
- package/package.json +2 -2
package/bin/cf-memory-mcp.js
CHANGED
|
@@ -353,10 +353,19 @@ class CFMemoryMCP {
|
|
|
353
353
|
|
|
354
354
|
// Default exclusions (always excluded)
|
|
355
355
|
const DEFAULT_EXCLUDE_DIRS = [
|
|
356
|
-
|
|
356
|
+
// Version control
|
|
357
|
+
'.git', '.svn', '.hg',
|
|
358
|
+
// Dependencies
|
|
359
|
+
'node_modules', 'vendor', 'packages',
|
|
360
|
+
// Build outputs
|
|
357
361
|
'dist', 'build', 'out', '.next', '.nuxt',
|
|
362
|
+
// Python
|
|
358
363
|
'__pycache__', '.pytest_cache', 'venv', '.venv',
|
|
364
|
+
// Test coverage
|
|
359
365
|
'coverage', '.coverage', '.nyc_output',
|
|
366
|
+
// IDE/Editor history & settings
|
|
367
|
+
'.history', '.vscode', '.idea', '.vs',
|
|
368
|
+
// Cloudflare/tooling
|
|
360
369
|
'.wrangler', '.turbo', '.cache'
|
|
361
370
|
];
|
|
362
371
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cf-memory-mcp",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "Best-in-class MCP
|
|
3
|
+
"version": "3.6.0",
|
|
4
|
+
"description": "Best-in-class MCP server with OPTIMIZED LLM stack (Llama-3.1-8B for all text tasks, BGE-M3 embeddings, BGE-Reranker), Query Expansion Caching (24h TTL), Hybrid Embedding Strategy, Specialized Memory Types, Progressive Disclosure, AI-Powered Summaries, Context Window Optimization, Smart Tool Recommendation Engine, Memory Intelligence Engine, and Unified Project Intelligence Tool",
|
|
5
5
|
"main": "bin/cf-memory-mcp.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"cf-memory-mcp": "./bin/cf-memory-mcp.js"
|