memento-mcp 0.3.9 → 0.3.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memento-mcp",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "mcpName": "io.github.myrakrusemark/memento-protocol",
5
5
  "description": "The Memento Protocol — persistent memory for AI agents",
6
6
  "type": "module",
@@ -99,7 +99,7 @@ try:
99
99
  for m in memories[:${RECALL_LIMIT:-5}]:
100
100
  content = m['content'][:${RECALL_MAX_LENGTH:-120}]
101
101
  t = abbrev.get(m['type'], m['type'])
102
- lines.append(f' 💭 {content} [{m[\"id\"]} {t}]')
102
+ lines.append(f' 🔹 {content} [{m[\"id\"]} {t}]')
103
103
  count += 1
104
104
 
105
105
  skip_matches = data.get('skip_matches', [])