cf-memory-mcp 2.13.0 → 2.14.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 CHANGED
@@ -11,7 +11,7 @@ A **best-in-class MCP (Model Context Protocol)** server for AI memory storage us
11
11
 
12
12
  **NEW: Beautiful, high-performance analytics dashboard with interactive visualizations and business intelligence**
13
13
 
14
- 🌐 **Live Dashboard**: [https://cf-memory-dashboard.pages.dev](https://cf-memory-dashboard.pages.dev)
14
+ 🌐 **Live Dashboard**: [https://55a2aea1.cf-memory-dashboard-vue.pages.dev](https://55a2aea1.cf-memory-dashboard-vue.pages.dev)
15
15
 
16
16
  ### Key Features
17
17
  - **🔄 Real-time Updates** - Live data streaming with Server-Sent Events (SSE)
@@ -32,14 +32,14 @@ A **best-in-class MCP (Model Context Protocol)** server for AI memory storage us
32
32
  ### Quick Start
33
33
  ```bash
34
34
  # Deploy dashboard (requires Cloudflare account)
35
- cd dashboard
35
+ cd dashboard-vue
36
36
  npm run deploy:production
37
37
 
38
38
  # Or access the live demo
39
- open https://cf-memory-dashboard.pages.dev
39
+ open https://55a2aea1.cf-memory-dashboard-vue.pages.dev
40
40
  ```
41
41
 
42
- 📖 **Documentation**: [Dashboard README](./dashboard/README.md) | [Executive Summary](./docs/dashboard-executive-summary.md)
42
+ 📖 **Documentation**: [Dashboard README](./dashboard-vue/README.md) | [Executive Summary](./docs/dashboard-executive-summary.md)
43
43
 
44
44
  **🚀 NEW: Enhanced JSON + Cloudflare Vectorize Integration (v2.12.1) - Next-Level Semantic Search:**
45
45
 
@@ -24,22 +24,9 @@ const PACKAGE_VERSION = require('../package.json').version;
24
24
  const TIMEOUT_MS = 30000;
25
25
  const CONNECT_TIMEOUT_MS = 10000;
26
26
 
27
- // Get API key from environment variable
27
+ // Get API key from environment variable (will be checked later)
28
28
  const API_KEY = process.env.CF_MEMORY_API_KEY;
29
29
 
30
- if (!API_KEY) {
31
- console.error('Error: CF_MEMORY_API_KEY environment variable is required');
32
- console.error('');
33
- console.error('Please set your API key:');
34
- console.error(' export CF_MEMORY_API_KEY="your-api-key-here"');
35
- console.error('');
36
- console.error('Or run with:');
37
- console.error(' CF_MEMORY_API_KEY="your-api-key-here" npx cf-memory-mcp');
38
- console.error('');
39
- console.error('Get your API key from: https://cf-memory-mcp.johnlam90.workers.dev');
40
- process.exit(1);
41
- }
42
-
43
30
  /**
44
31
  * Cross-platform MCP stdio bridge
45
32
  * Handles communication between MCP clients and the Cloudflare Worker
@@ -306,6 +293,20 @@ For more information, visit: https://github.com/johnlam90/cf-memory-mcp
306
293
  process.exit(0);
307
294
  }
308
295
 
296
+ // Check API key before starting server
297
+ if (!API_KEY) {
298
+ console.error('Error: CF_MEMORY_API_KEY environment variable is required');
299
+ console.error('');
300
+ console.error('Please set your API key:');
301
+ console.error(' export CF_MEMORY_API_KEY="your-api-key-here"');
302
+ console.error('');
303
+ console.error('Or run with:');
304
+ console.error(' CF_MEMORY_API_KEY="your-api-key-here" npx cf-memory-mcp');
305
+ console.error('');
306
+ console.error('Get your API key from: https://cf-memory-mcp.johnlam90.workers.dev');
307
+ process.exit(1);
308
+ }
309
+
309
310
  // Start the MCP server
310
311
  const server = new CFMemoryMCP();
311
312
  server.start().catch(error => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-memory-mcp",
3
- "version": "2.13.0",
3
+ "version": "2.14.0",
4
4
  "description": "Best-in-class MCP (Model Context Protocol) server for AI memory storage with 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": {
@@ -85,7 +85,7 @@
85
85
  "test:mcp": "node test/mcp-integration.test.js",
86
86
  "prepublishOnly": "echo 'Skipping tests for publishing - package tested manually'",
87
87
  "deploy": "wrangler deploy",
88
- "migrate:cache-optimization": "node scripts/run-cache-optimization-migration.js",
88
+
89
89
  "dev": "wrangler dev",
90
90
  "cf-typegen": "wrangler types",
91
91
  "test:performance": "node test/performance-benchmark.js",