@vheins/local-memory-mcp 0.6.0 → 0.6.1
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.
|
@@ -1950,7 +1950,8 @@ var SQLiteStore = class {
|
|
|
1950
1950
|
this.actions = new ActionEntity(this.db);
|
|
1951
1951
|
this.system = new SystemEntity(this.db);
|
|
1952
1952
|
this.summaries = new SummaryEntity(this.db);
|
|
1953
|
-
|
|
1953
|
+
process.stderr.write(`${(/* @__PURE__ */ new Date()).toISOString()} [INFO ] SQLiteStore initialized at ${finalPath}
|
|
1954
|
+
`);
|
|
1954
1955
|
}
|
|
1955
1956
|
/**
|
|
1956
1957
|
* Returns the current database file path.
|
package/dist/dashboard/server.js
CHANGED
package/dist/mcp/server.js
CHANGED
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
setLogLevel,
|
|
43
43
|
updateSessionFromInitialize,
|
|
44
44
|
updateSessionRoots
|
|
45
|
-
} from "../chunk-
|
|
45
|
+
} from "../chunk-EQTLHCFK.js";
|
|
46
46
|
|
|
47
47
|
// src/mcp/server.ts
|
|
48
48
|
import readline from "readline";
|
|
@@ -1852,8 +1852,8 @@ if (process.argv.includes("doctor")) {
|
|
|
1852
1852
|
process.stderr.write(`\u{1F4C4} Database Status: ${fs2.existsSync(dbPath) ? "\u2705 Exists" : "\u274C Not Found"}
|
|
1853
1853
|
`);
|
|
1854
1854
|
try {
|
|
1855
|
-
const stats = db2.system.
|
|
1856
|
-
process.stderr.write(`\u{1F4CA} Memory Count: ${stats.
|
|
1855
|
+
const stats = db2.system.getGlobalStats();
|
|
1856
|
+
process.stderr.write(`\u{1F4CA} Memory Count: ${stats.totalMemories} entries
|
|
1857
1857
|
`);
|
|
1858
1858
|
process.stderr.write(`\u2705 SQLite Connection: Functional
|
|
1859
1859
|
`);
|