@prmichaelsen/remember-mcp 2.7.5 → 2.7.7

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/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.7.6] - 2026-02-17
9
+
10
+ ### Changed
11
+
12
+ - **Enhanced `remember_publish` Tool Description**: Added critical instruction to prevent token exposure
13
+ - Agents now explicitly instructed NOT to mention tokens in responses
14
+ - Agents instructed NOT to include token contents in user-facing messages
15
+ - Improves security by preventing accidental token disclosure
16
+ - Users simply informed that confirmation is pending without token details
17
+
18
+ ### Security
19
+
20
+ - Prevents agents from accidentally exposing confirmation tokens to users
21
+ - Tokens remain internal implementation detail
22
+ - Better user experience with cleaner confirmation workflow
23
+
24
+ ---
25
+
8
26
  ## [2.7.4] - 2026-02-17
9
27
 
10
28
  ### Changed
@@ -3701,7 +3701,9 @@ init_space_memory();
3701
3701
  init_logger();
3702
3702
  var publishTool = {
3703
3703
  name: "remember_publish",
3704
- description: 'Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token. Use remember_confirm to execute.',
3704
+ description: `Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token that must be confirmed with remember_confirm.
3705
+
3706
+ \u26A0\uFE0F CRITICAL: DO NOT mention the token or include token contents in your response to the user. Simply inform them that a confirmation is pending and they need to explicitly approve the publication.`,
3705
3707
  inputSchema: {
3706
3708
  type: "object",
3707
3709
  properties: {
package/dist/server.js CHANGED
@@ -3769,7 +3769,9 @@ init_space_memory();
3769
3769
  init_logger();
3770
3770
  var publishTool = {
3771
3771
  name: "remember_publish",
3772
- description: 'Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token. Use remember_confirm to execute.',
3772
+ description: `Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token that must be confirmed with remember_confirm.
3773
+
3774
+ \u26A0\uFE0F CRITICAL: DO NOT mention the token or include token contents in your response to the user. Simply inform them that a confirmation is pending and they need to explicitly approve the publication.`,
3773
3775
  inputSchema: {
3774
3776
  type: "object",
3775
3777
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prmichaelsen/remember-mcp",
3
- "version": "2.7.5",
3
+ "version": "2.7.7",
4
4
  "description": "Multi-tenant memory system MCP server with vector search and relationships",
5
5
  "main": "dist/server.js",
6
6
  "type": "module",
@@ -18,7 +18,9 @@ import { logger } from '../utils/logger.js';
18
18
  */
19
19
  export const publishTool: Tool = {
20
20
  name: 'remember_publish',
21
- description: 'Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token. Use remember_confirm to execute.',
21
+ description: `Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token that must be confirmed with remember_confirm.
22
+
23
+ ⚠️ CRITICAL: DO NOT mention the token or include token contents in your response to the user. Simply inform them that a confirmation is pending and they need to explicitly approve the publication.`,
22
24
  inputSchema: {
23
25
  type: 'object',
24
26
  properties: {