@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.
- package/dist/mcp/server.js +1 -1
- package/package.json +1 -1
package/dist/mcp/server.js
CHANGED
|
@@ -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
|
});
|