@vheins/local-memory-mcp 0.19.16 → 0.19.17

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.
@@ -3896,7 +3896,7 @@ var MEMORY_TOOL_DEFINITIONS = [
3896
3896
  {
3897
3897
  name: "memory-acknowledge",
3898
3898
  title: "Memory Acknowledge",
3899
- description: "Acknowledge the use of a memory or report its irrelevance/contradiction. Mandatory after using memory to generate code.",
3899
+ description: 'Acknowledge the use of a memory or report its irrelevance/contradiction. Mandatory after using memory to generate code. Example: { code: "MEM-123", status: "used" } or { code: "MEM-123", status: "irrelevant" }.',
3900
3900
  annotations: {
3901
3901
  readOnlyHint: false,
3902
3902
  idempotentHint: false,
@@ -6737,7 +6737,9 @@ var MemoryAcknowledgeSchema = z3.object({
6737
6737
  code: z3.string().max(20).optional(),
6738
6738
  owner: z3.string().min(1),
6739
6739
  repo: z3.string().min(1).transform(normalizeRepo),
6740
- status: z3.enum(["used", "irrelevant", "contradictory"]),
6740
+ status: z3.enum(["used", "irrelevant", "contradictory"]).describe(
6741
+ `Usage status. Use "used" after generating code from a memory, "irrelevant" if the memory didn't help, or "contradictory" if it conflicts with current understanding.`
6742
+ ),
6741
6743
  application_context: z3.string().min(10).optional(),
6742
6744
  structured: z3.boolean().default(false)
6743
6745
  }).refine((data) => data.memory_id !== void 0 || data.code !== void 0, {
@@ -15,7 +15,7 @@ import {
15
15
  handleTaskClaim,
16
16
  listResources,
17
17
  logger
18
- } from "../chunk-ZG2WJU7H.js";
18
+ } from "../chunk-7O3T3GQF.js";
19
19
 
20
20
  // src/dashboard/server.ts
21
21
  import express from "express";
@@ -62,7 +62,7 @@ import {
62
62
  parseRepoInput,
63
63
  rankCompletionValues,
64
64
  toContextSlug
65
- } from "../chunk-ZG2WJU7H.js";
65
+ } from "../chunk-7O3T3GQF.js";
66
66
 
67
67
  // src/mcp/server.ts
68
68
  import { serveStdio } from "@modelcontextprotocol/server/stdio";
@@ -75,8 +75,8 @@ import path from "path";
75
75
  import { fileURLToPath } from "url";
76
76
  var __dirname = path.dirname(fileURLToPath(import.meta.url));
77
77
  var pkgVersion = "0.1.0";
78
- if ("0.19.16") {
79
- pkgVersion = "0.19.16";
78
+ if ("0.19.17") {
79
+ pkgVersion = "0.19.17";
80
80
  } else {
81
81
  let searchDir = __dirname;
82
82
  for (let i = 0; i < 5; i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.19.16",
3
+ "version": "0.19.17",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",