@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
- logger.info(`SQLiteStore initialized at ${finalPath}`);
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.
@@ -6,7 +6,7 @@ import {
6
6
  TOOL_DEFINITIONS,
7
7
  listResources,
8
8
  logger
9
- } from "../chunk-XIJO63UU.js";
9
+ } from "../chunk-EQTLHCFK.js";
10
10
 
11
11
  // src/dashboard/server.ts
12
12
  import express from "express";
@@ -42,7 +42,7 @@ import {
42
42
  setLogLevel,
43
43
  updateSessionFromInitialize,
44
44
  updateSessionRoots
45
- } from "../chunk-XIJO63UU.js";
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.getStats();
1856
- process.stderr.write(`\u{1F4CA} Memory Count: ${stats.total} entries
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
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",