@vheins/local-memory-mcp 0.9.5 → 0.9.6
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.
|
@@ -3,8 +3,8 @@ import { fileURLToPath } from "url";
|
|
|
3
3
|
import path from "path";
|
|
4
4
|
var __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
5
5
|
var pkgVersion = "0.1.0";
|
|
6
|
-
if ("0.9.
|
|
7
|
-
pkgVersion = "0.9.
|
|
6
|
+
if ("0.9.6") {
|
|
7
|
+
pkgVersion = "0.9.6";
|
|
8
8
|
} else {
|
|
9
9
|
let searchDir = __dirname;
|
|
10
10
|
for (let i = 0; i < 5; i++) {
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -55,7 +55,7 @@ import {
|
|
|
55
55
|
toContextSlug,
|
|
56
56
|
updateSessionFromInitialize,
|
|
57
57
|
updateSessionRoots
|
|
58
|
-
} from "../chunk-
|
|
58
|
+
} from "../chunk-PWNNK75T.js";
|
|
59
59
|
|
|
60
60
|
// src/mcp/server.ts
|
|
61
61
|
import readline from "readline";
|
|
@@ -2001,12 +2001,12 @@ async function handleStandardSearch(params, db2, vectors2) {
|
|
|
2001
2001
|
if (paginatedResults.length > 0) {
|
|
2002
2002
|
const parts = [
|
|
2003
2003
|
"Standards:",
|
|
2004
|
-
"- title|context|language|scope",
|
|
2004
|
+
"- code|title|context|language|scope",
|
|
2005
2005
|
...paginatedResults.map(
|
|
2006
|
-
(standard) => `- ${standard.title}|${standard.context}|${standard.language || "-"}|${standard.is_global ? "global" : standard.repo || "-"}`
|
|
2006
|
+
(standard) => `- ${standard.code ?? "-"}|${standard.title}|${standard.context}|${standard.language || "-"}|${standard.is_global ? "global" : standard.repo || "-"}`
|
|
2007
2007
|
),
|
|
2008
2008
|
"",
|
|
2009
|
-
"Use standard-detail with
|
|
2009
|
+
"Use standard-detail with code for full content."
|
|
2010
2010
|
];
|
|
2011
2011
|
contentSummary = parts.join("\n");
|
|
2012
2012
|
} else {
|