@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:
|
|
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, {
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
parseRepoInput,
|
|
63
63
|
rankCompletionValues,
|
|
64
64
|
toContextSlug
|
|
65
|
-
} from "../chunk-
|
|
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.
|
|
79
|
-
pkgVersion = "0.19.
|
|
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++) {
|