@echomem/mcp 1.4.20 → 1.4.22

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.
@@ -117,7 +117,7 @@ export function listToolSpecs(opts = {}) {
117
117
  return [
118
118
  {
119
119
  name: canonicalToolNames.search,
120
- description: withMcpVersion(`Recall the user's prior decisions, preferences, and project context from EchoMem — their long-term memory across ALL their AI tools, not just this session. Use it instead of re-deriving or re-asking what the user already settled. ${recallPlanNote} ${searchBillingReplyInstruction}${mapSection}\nReturns the ranked memories; set includeAnswer=true only if you need the legacy synthesized answer. Current time: ${currentTime}.${updateSection}`),
120
+ description: withMcpVersion(`Recall the user's prior decisions, preferences, and project context from EchoMem — their long-term memory across ALL their AI tools, not just this session. Use it instead of re-deriving or re-asking what the user already settled. ${recallPlanNote} ${searchBillingReplyInstruction}${mapSection}\nReturns ranked memories only; the MCP host model writes the final answer. Current time: ${currentTime}.${updateSection}`),
121
121
  inputSchema: {
122
122
  type: "object",
123
123
  properties: {
@@ -125,11 +125,6 @@ export function listToolSpecs(opts = {}) {
125
125
  limit: { type: "number", default: 10 },
126
126
  threshold: { type: "number", default: 0.1 },
127
127
  timeFrameDays: { type: "number" },
128
- includeAnswer: {
129
- type: "boolean",
130
- default: false,
131
- description: "Default false: return only retrieved memories and skip answer generation. Set true for the legacy synthesized recall answer.",
132
- },
133
128
  triggerMessage: {
134
129
  type: "string",
135
130
  description: "Optional: the user's message that caused this recall. EchoMem stores only a redacted analytics preview and hash.",
@@ -148,11 +143,6 @@ export function listToolSpecs(opts = {}) {
148
143
  limit: { type: "number", default: 10 },
149
144
  threshold: { type: "number", default: 0.1 },
150
145
  timeFrameDays: { type: "number" },
151
- includeAnswer: {
152
- type: "boolean",
153
- default: false,
154
- description: "Default false: return only retrieved memories and skip answer generation. Set true for the legacy synthesized recall answer.",
155
- },
156
146
  triggerMessage: {
157
147
  type: "string",
158
148
  description: "Optional: the user's message that caused this recall. EchoMem stores only a redacted analytics preview and hash.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@echomem/mcp",
3
- "version": "1.4.20",
3
+ "version": "1.4.22",
4
4
  "description": "EchoMem MCP bridge: cloud-first memory tools, local context HUD, and the Agent Doctor workspace forensics report (cost ledger + 3D repo city)",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -22,7 +22,11 @@
22
22
  "dev": "node dist/index.js",
23
23
  "smoke": "node smoke.mjs",
24
24
  "preview:extraction": "npm run build && node scripts/preview-extraction.mjs",
25
- "test": "npm run build && node test/local-data-paths.test.mjs && node test/crypto.test.mjs && node test/integration.test.mjs && node test/no-restart.test.mjs && node test/report.test.mjs && node test/forensics.test.mjs && node test/canonical-golden.test.mjs && node test/tools.test.mjs && node test/update-check.test.mjs && node test/delete.test.mjs && node test/low-touch-tools.test.mjs && node test/migrate.test.mjs && node test/hud.test.mjs",
25
+ "test:artifact": "npm run build && node test/package-artifact.test.mjs",
26
+ "test:registry": "node test/registry-artifact.test.mjs",
27
+ "test:registry-ui": "npm run build && node test/registry-ui.test.mjs",
28
+ "test:ui": "npm run build && node test/setup-ui.test.mjs",
29
+ "test": "npm run build && node test/local-data-paths.test.mjs && node test/crypto.test.mjs && node test/integration.test.mjs && node test/local-auth.test.mjs && node test/retrieval-only.test.mjs && node test/no-restart.test.mjs && node test/report.test.mjs && node test/forensics.test.mjs && node test/canonical-golden.test.mjs && node test/tools.test.mjs && node test/update-check.test.mjs && node test/delete.test.mjs && node test/low-touch-tools.test.mjs && node test/migrate.test.mjs && node test/restart-recovery.test.mjs && node test/hud.test.mjs",
26
30
  "prepack": "npm run build && node scripts/bundle-city.mjs"
27
31
  },
28
32
  "dependencies": {