@vheins/local-memory-mcp 0.8.15 → 0.8.16

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.
@@ -2197,7 +2197,7 @@ if (process.argv.includes("doctor")) {
2197
2197
  var db = await SQLiteStore.create();
2198
2198
  var vectors = new RealVectorStore(db);
2199
2199
  addLogSink(createFileSink(path3.dirname(db.getDbPath())));
2200
- logger.info("[Server] startup", { pid: process.pid, db: db.getDbPath() });
2200
+ logger.info("[Server] startup", { pid: process.pid, version: CAPABILITIES.serverInfo.version, db: db.getDbPath() });
2201
2201
  vectors.initialize().catch((err) => {
2202
2202
  logger.warn("[Server] Initial vector model loading failed. Will retry on first use.", { error: String(err) });
2203
2203
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.8.15",
3
+ "version": "0.8.16",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",