cf-memory-mcp 2.2.0 β 2.3.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 +275 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
3
3
|
[](https://badge.fury.io/js/cf-memory-mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
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**,
|
|
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
|
+
|
|
8
|
+
## π― Current Version: v2.3.0
|
|
9
|
+
|
|
10
|
+
**Latest Features:**
|
|
11
|
+
- π€ **Multi-Agent Collaboration** - First MCP server with true multi-agent capabilities
|
|
12
|
+
- β° **Temporal Intelligence** - Time-aware memory management and evolution tracking
|
|
13
|
+
- π **Advanced Analytics** - Comprehensive usage and collaboration monitoring
|
|
14
|
+
- π **Memory Synchronization** - Real-time sync between instances with conflict resolution
|
|
15
|
+
- π€ **Rich Export/Import** - Multiple formats including graph visualization
|
|
16
|
+
|
|
17
|
+
**Total Tools Available: 35+** spanning memory management, relationships, temporal intelligence, and collaboration.
|
|
7
18
|
|
|
8
19
|
## π Quick Start
|
|
9
20
|
|
|
@@ -42,6 +53,32 @@ cf-memory-mcp
|
|
|
42
53
|
- **π Project Onboarding** - Automated workflows for project setup and knowledge extraction
|
|
43
54
|
- **π Query Expansion** - Automatically includes synonyms and related terms
|
|
44
55
|
|
|
56
|
+
### β° Context-Aware & Temporal Intelligence (v2.2.0)
|
|
57
|
+
|
|
58
|
+
- **π§ Conversation Context** - Track and manage conversation-specific memory contexts
|
|
59
|
+
- **β° Temporal Relevance** - Time-based memory scoring and decay management
|
|
60
|
+
- **π Memory Evolution** - Version control and evolution tracking for memories
|
|
61
|
+
- **π Temporal Analytics** - Analyze how memories and relationships change over time
|
|
62
|
+
- **π― Context Activation** - Smart memory activation based on conversation context
|
|
63
|
+
- **π Predictive Relevance** - ML-powered predictions for memory importance over time
|
|
64
|
+
|
|
65
|
+
### π€ Multi-Agent Collaboration (v2.3.0)
|
|
66
|
+
|
|
67
|
+
- **π₯ Agent Management** - Register and authenticate multiple AI agents
|
|
68
|
+
- **π Collaborative Spaces** - Shared memory workspaces with permission control
|
|
69
|
+
- **π Access Control** - Fine-grained permissions (read/write/admin) for agents
|
|
70
|
+
- **π Memory Synchronization** - Real-time sync between different instances
|
|
71
|
+
- **β‘ Conflict Resolution** - Smart merge strategies for concurrent edits
|
|
72
|
+
- **π Collaboration Analytics** - Track agent interactions and collaboration patterns
|
|
73
|
+
|
|
74
|
+
### π€ Advanced Export/Import (v2.3.0)
|
|
75
|
+
|
|
76
|
+
- **π Multi-Format Export** - JSON, XML, Markdown, CSV, GraphML formats
|
|
77
|
+
- **π Batch Operations** - Asynchronous export/import job processing
|
|
78
|
+
- **πΈοΈ Graph Visualization** - Export memory networks for analysis tools
|
|
79
|
+
- **π¦ Rich Metadata** - Full preservation of relationships and collaboration data
|
|
80
|
+
- **π Conflict Handling** - Smart import strategies for existing memories
|
|
81
|
+
|
|
45
82
|
### Advanced Features
|
|
46
83
|
|
|
47
84
|
- **π§ Semantic Search** - AI-powered vector search using Cloudflare AI Workers
|
|
@@ -279,6 +316,243 @@ Smart workflow for automated project onboarding with knowledge extraction.
|
|
|
279
316
|
|
|
280
317
|
**Returns:** Complete onboarding results with key concepts, relationship map, knowledge gaps, and documentation suggestions.
|
|
281
318
|
|
|
319
|
+
## β° Context-Aware & Temporal Intelligence (v2.2.0)
|
|
320
|
+
|
|
321
|
+
### `create_conversation_context`
|
|
322
|
+
|
|
323
|
+
Create a new conversation context for tracking related memories.
|
|
324
|
+
|
|
325
|
+
**Parameters:**
|
|
326
|
+
|
|
327
|
+
- `context_name` (string, required) - Name for the conversation context
|
|
328
|
+
- `description` (string, optional) - Description of the context
|
|
329
|
+
- `metadata` (object, optional) - Additional context metadata
|
|
330
|
+
|
|
331
|
+
### `activate_memory_in_context`
|
|
332
|
+
|
|
333
|
+
Activate a memory within a specific conversation context.
|
|
334
|
+
|
|
335
|
+
**Parameters:**
|
|
336
|
+
|
|
337
|
+
- `memory_id` (string, required) - Memory ID to activate
|
|
338
|
+
- `context_id` (string, required) - Context ID to activate memory in
|
|
339
|
+
- `activation_strength` (number, optional) - Strength of activation (0-1)
|
|
340
|
+
|
|
341
|
+
### `get_context_memories`
|
|
342
|
+
|
|
343
|
+
Get all memories associated with a conversation context.
|
|
344
|
+
|
|
345
|
+
**Parameters:**
|
|
346
|
+
|
|
347
|
+
- `context_id` (string, required) - Context ID to get memories for
|
|
348
|
+
- `include_inactive` (boolean, optional) - Include inactive memories
|
|
349
|
+
- `sort_by_relevance` (boolean, optional) - Sort by temporal relevance
|
|
350
|
+
|
|
351
|
+
### `evolve_memory`
|
|
352
|
+
|
|
353
|
+
Create a new version of a memory with evolution tracking.
|
|
354
|
+
|
|
355
|
+
**Parameters:**
|
|
356
|
+
|
|
357
|
+
- `memory_id` (string, required) - Original memory ID
|
|
358
|
+
- `new_content` (string, required) - Updated content
|
|
359
|
+
- `evolution_type` (string, required) - Type of evolution (refinement, expansion, correction)
|
|
360
|
+
- `evolution_summary` (string, optional) - Summary of changes
|
|
361
|
+
|
|
362
|
+
### `analyze_memory_decay`
|
|
363
|
+
|
|
364
|
+
Analyze temporal decay patterns for memories.
|
|
365
|
+
|
|
366
|
+
**Parameters:**
|
|
367
|
+
|
|
368
|
+
- `memory_id` (string, optional) - Specific memory to analyze
|
|
369
|
+
- `time_range_days` (number, optional) - Time range for analysis (default: 30)
|
|
370
|
+
- `include_predictions` (boolean, optional) - Include future decay predictions
|
|
371
|
+
|
|
372
|
+
### `analyze_temporal_relationships`
|
|
373
|
+
|
|
374
|
+
Analyze how relationships evolve over time.
|
|
375
|
+
|
|
376
|
+
**Parameters:**
|
|
377
|
+
|
|
378
|
+
- `relationship_id` (string, optional) - Specific relationship to analyze
|
|
379
|
+
- `memory_id` (string, optional) - Memory ID to analyze relationships for
|
|
380
|
+
- `time_range_days` (number, optional) - Time range in days (default: 30)
|
|
381
|
+
- `include_predictions` (boolean, optional) - Include future predictions
|
|
382
|
+
|
|
383
|
+
## π€ Multi-Agent Collaboration (v2.3.0)
|
|
384
|
+
|
|
385
|
+
### `register_agent`
|
|
386
|
+
|
|
387
|
+
Register a new agent in the system for collaboration.
|
|
388
|
+
|
|
389
|
+
**Parameters:**
|
|
390
|
+
|
|
391
|
+
- `name` (string, required) - Agent name
|
|
392
|
+
- `type` (string, required) - Agent type: 'ai_agent', 'human_user', or 'system'
|
|
393
|
+
- `description` (string, optional) - Agent description
|
|
394
|
+
- `capabilities` (array, optional) - Agent capabilities
|
|
395
|
+
- `metadata` (object, optional) - Agent metadata
|
|
396
|
+
|
|
397
|
+
### `create_memory_space`
|
|
398
|
+
|
|
399
|
+
Create a collaborative memory space for multi-agent sharing.
|
|
400
|
+
|
|
401
|
+
**Parameters:**
|
|
402
|
+
|
|
403
|
+
- `name` (string, required) - Memory space name
|
|
404
|
+
- `description` (string, optional) - Space description
|
|
405
|
+
- `owner_agent_id` (string, required) - Agent ID who owns this space
|
|
406
|
+
- `space_type` (string, optional) - Type: 'private', 'collaborative', or 'public'
|
|
407
|
+
- `access_policy` (string, optional) - Policy: 'open', 'invite_only', or 'restricted'
|
|
408
|
+
|
|
409
|
+
### `grant_space_permission`
|
|
410
|
+
|
|
411
|
+
Grant permission to an agent for a memory space.
|
|
412
|
+
|
|
413
|
+
**Parameters:**
|
|
414
|
+
|
|
415
|
+
- `space_id` (string, required) - Memory space ID
|
|
416
|
+
- `agent_id` (string, required) - Agent ID to grant permission to
|
|
417
|
+
- `permission_level` (string, required) - Level: 'read', 'write', or 'admin'
|
|
418
|
+
- `granted_by` (string, required) - Agent ID granting the permission
|
|
419
|
+
|
|
420
|
+
### `add_memory_to_space`
|
|
421
|
+
|
|
422
|
+
Add a memory to a collaborative space.
|
|
423
|
+
|
|
424
|
+
**Parameters:**
|
|
425
|
+
|
|
426
|
+
- `memory_id` (string, required) - Memory ID to add
|
|
427
|
+
- `space_id` (string, required) - Space ID to add memory to
|
|
428
|
+
- `added_by` (string, required) - Agent ID adding the memory
|
|
429
|
+
- `access_level` (string, optional) - Access level for this memory
|
|
430
|
+
|
|
431
|
+
### `get_agent_spaces`
|
|
432
|
+
|
|
433
|
+
Get all memory spaces accessible to an agent.
|
|
434
|
+
|
|
435
|
+
**Parameters:**
|
|
436
|
+
|
|
437
|
+
- `agent_id` (string, required) - Agent ID to get spaces for
|
|
438
|
+
|
|
439
|
+
### `get_space_memories`
|
|
440
|
+
|
|
441
|
+
Get all memories in a space (requires permission).
|
|
442
|
+
|
|
443
|
+
**Parameters:**
|
|
444
|
+
|
|
445
|
+
- `space_id` (string, required) - Space ID to get memories from
|
|
446
|
+
- `agent_id` (string, required) - Agent ID requesting access
|
|
447
|
+
|
|
448
|
+
## π Memory Synchronization (v2.3.0)
|
|
449
|
+
|
|
450
|
+
### `sync_memory`
|
|
451
|
+
|
|
452
|
+
Synchronize a memory with another instance.
|
|
453
|
+
|
|
454
|
+
**Parameters:**
|
|
455
|
+
|
|
456
|
+
- `memory_id` (string, required) - Memory ID to synchronize
|
|
457
|
+
- `target_instance` (string, required) - Target instance identifier
|
|
458
|
+
- `force_sync` (boolean, optional) - Force sync even if already synced
|
|
459
|
+
- `conflict_resolution` (string, optional) - Strategy: 'manual', 'auto_merge', 'source_wins', 'target_wins'
|
|
460
|
+
|
|
461
|
+
### `resolve_sync_conflict`
|
|
462
|
+
|
|
463
|
+
Resolve a synchronization conflict.
|
|
464
|
+
|
|
465
|
+
**Parameters:**
|
|
466
|
+
|
|
467
|
+
- `conflict_id` (string, required) - Conflict ID to resolve
|
|
468
|
+
- `resolution_method` (string, required) - Resolution method
|
|
469
|
+
- `resolved_by` (string, required) - Agent ID resolving the conflict
|
|
470
|
+
- `resolved_version` (object, optional) - Manually resolved version
|
|
471
|
+
|
|
472
|
+
### `get_sync_status`
|
|
473
|
+
|
|
474
|
+
Get synchronization status for a memory.
|
|
475
|
+
|
|
476
|
+
**Parameters:**
|
|
477
|
+
|
|
478
|
+
- `memory_id` (string, required) - Memory ID to check sync status for
|
|
479
|
+
|
|
480
|
+
## π€ Export/Import Operations (v2.3.0)
|
|
481
|
+
|
|
482
|
+
### `create_export_job`
|
|
483
|
+
|
|
484
|
+
Create an export job for memories.
|
|
485
|
+
|
|
486
|
+
**Parameters:**
|
|
487
|
+
|
|
488
|
+
- `format` (string, required) - Export format: 'json', 'xml', 'markdown', 'csv', 'graphml'
|
|
489
|
+
- `memory_ids` (array, optional) - Specific memory IDs to export
|
|
490
|
+
- `space_ids` (array, optional) - Memory space IDs to export
|
|
491
|
+
- `include_relationships` (boolean, optional) - Include memory relationships
|
|
492
|
+
- `include_metadata` (boolean, optional) - Include full metadata
|
|
493
|
+
- `initiated_by` (string, required) - Agent ID initiating export
|
|
494
|
+
|
|
495
|
+
### `get_export_job`
|
|
496
|
+
|
|
497
|
+
Get export job status and download information.
|
|
498
|
+
|
|
499
|
+
**Parameters:**
|
|
500
|
+
|
|
501
|
+
- `job_id` (string, required) - Export job ID
|
|
502
|
+
|
|
503
|
+
### `create_import_job`
|
|
504
|
+
|
|
505
|
+
Create an import job for memories.
|
|
506
|
+
|
|
507
|
+
**Parameters:**
|
|
508
|
+
|
|
509
|
+
- `format` (string, required) - Import format
|
|
510
|
+
- `file_content` (string, required) - File content to import
|
|
511
|
+
- `target_space_id` (string, optional) - Target space to import into
|
|
512
|
+
- `conflict_resolution` (string, optional) - How to handle existing memories
|
|
513
|
+
- `initiated_by` (string, required) - Agent ID initiating import
|
|
514
|
+
|
|
515
|
+
## π Analytics & Monitoring (v2.3.0)
|
|
516
|
+
|
|
517
|
+
### `track_memory_analytics`
|
|
518
|
+
|
|
519
|
+
Track a memory analytics event.
|
|
520
|
+
|
|
521
|
+
**Parameters:**
|
|
522
|
+
|
|
523
|
+
- `memory_id` (string, required) - Memory ID
|
|
524
|
+
- `agent_id` (string, required) - Agent ID performing the action
|
|
525
|
+
- `action_type` (string, required) - Action: 'create', 'read', 'update', 'delete', 'search', 'relate'
|
|
526
|
+
- `session_id` (string, optional) - Session identifier
|
|
527
|
+
- `context_data` (object, optional) - Context data about the action
|
|
528
|
+
- `performance_metrics` (object, optional) - Performance metrics
|
|
529
|
+
|
|
530
|
+
### `get_memory_analytics`
|
|
531
|
+
|
|
532
|
+
Get memory usage analytics.
|
|
533
|
+
|
|
534
|
+
**Parameters:**
|
|
535
|
+
|
|
536
|
+
- `memory_id` (string, optional) - Specific memory ID
|
|
537
|
+
- `agent_id` (string, optional) - Specific agent ID
|
|
538
|
+
- `action_type` (string, optional) - Specific action type
|
|
539
|
+
- `start_date` (string, optional) - Start date for analytics
|
|
540
|
+
- `end_date` (string, optional) - End date for analytics
|
|
541
|
+
- `limit` (number, optional) - Maximum number of results
|
|
542
|
+
|
|
543
|
+
### `get_collaboration_analytics`
|
|
544
|
+
|
|
545
|
+
Get collaboration event analytics.
|
|
546
|
+
|
|
547
|
+
**Parameters:**
|
|
548
|
+
|
|
549
|
+
- `space_id` (string, optional) - Specific space ID
|
|
550
|
+
- `agent_id` (string, optional) - Specific agent ID
|
|
551
|
+
- `event_type` (string, optional) - Specific event type
|
|
552
|
+
- `start_date` (string, optional) - Start date for analytics
|
|
553
|
+
- `end_date` (string, optional) - End date for analytics
|
|
554
|
+
- `limit` (number, optional) - Maximum number of results
|
|
555
|
+
|
|
282
556
|
## π Architecture
|
|
283
557
|
|
|
284
558
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cf-memory-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
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",
|
|
5
5
|
"main": "bin/cf-memory-mcp.js",
|
|
6
6
|
"bin": {
|