collective-memory-mcp 0.6.3 → 0.6.4

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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,9 +42,9 @@ Add to your Claude Desktop MCP configuration (`~/.config/Claude/claude_desktop_c
42
42
 
43
43
  The `-y` flag suppresses the npx prompt and auto-installs the latest version.
44
44
 
45
- ## System Prompt (Recommended)
45
+ ## System Prompt (Required)
46
46
 
47
- Add this to your Claude system prompt to ensure agents know about the Collective Memory:
47
+ This MCP server does NOT automatically inject its prompts into new chats. You MUST manually add this to your Claude/AI system prompt:
48
48
 
49
49
  ```
50
50
  You have access to a Collective Memory MCP Server that stores knowledge from previous tasks.
@@ -56,13 +56,21 @@ BEFORE starting work, search for similar past tasks using:
56
56
  The search uses TF-IDF vector embeddings, so it finds relevant content even when different
57
57
  terminology is used. Results are ranked by similarity score.
58
58
 
59
- AFTER completing any task, document it using:
59
+ AFTER completing any task (like any, it doesn't matter even if you answer a question), document it using:
60
60
  - record_task_completion
61
61
 
62
62
  When writing observations, be SPECIFIC and include facts like file paths, versions,
63
63
  metrics, and error messages. Avoid vague statements like "works well" or "fixed bugs".
64
+
65
+ When to use getPrompt():
66
+ - Use listPrompts() at the start of a new chat to see all available prompt templates
67
+ - Call getPrompt(name) when you need a specific predefined prompt (e.g., "getting-started")
68
+ - Fetch prompts proactively - don't wait for the user to request them
69
+ - This is especially important in new chats where context hasn't been established yet
64
70
  ```
65
71
 
72
+ **Important:** This system prompt must be manually configured in your AI client. The MCP protocol does not support automatic prompt injection on connection.
73
+
66
74
  ## How Vector Search Works
67
75
 
68
76
  This system uses **TF-IDF (Term Frequency-Inverse Document Frequency)** vector search:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "collective-memory-mcp",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "A persistent, graph-based memory system for AI agents with TF-IDF vector search (MCP Server)",
5
5
  "type": "module",
6
6
  "main": "src/server.js",