@vheins/local-memory-mcp 0.8.12 → 0.8.14

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.
@@ -1901,9 +1901,9 @@ var SummaryEntity = class extends BaseEntity {
1901
1901
  import lockfile from "proper-lockfile";
1902
1902
  import path2 from "path";
1903
1903
  import fs3 from "fs";
1904
- var LOCK_STALE_MS = 15e3;
1905
- var LOCK_RETRY_DELAY_MS = 100;
1906
- var LOCK_RETRY_COUNT = 150;
1904
+ var LOCK_STALE_MS = 3e4;
1905
+ var LOCK_RETRY_DELAY_MS = 200;
1906
+ var LOCK_RETRY_COUNT = 250;
1907
1907
  var WriteLock = class {
1908
1908
  lockTarget;
1909
1909
  locked = false;
@@ -8,7 +8,7 @@ import {
8
8
  createFileSink,
9
9
  listResources,
10
10
  logger
11
- } from "../chunk-PAEKULGL.js";
11
+ } from "../chunk-4LVZQKWD.js";
12
12
 
13
13
  // src/dashboard/server.ts
14
14
  import express from "express";
@@ -43,7 +43,7 @@ import {
43
43
  setLogLevel,
44
44
  updateSessionFromInitialize,
45
45
  updateSessionRoots
46
- } from "../chunk-PAEKULGL.js";
46
+ } from "../chunk-4LVZQKWD.js";
47
47
 
48
48
  // src/mcp/server.ts
49
49
  import readline from "readline";
@@ -1358,7 +1358,7 @@ async function handleTaskUpdate(args, storage, vectors2) {
1358
1358
  }
1359
1359
  });
1360
1360
  const isCompleted = updates.status === "completed" && updatedCount > 0;
1361
- const summaryText = isCompleted ? `Updated ${updatedCount} task(s) in repo "${repo}". \u2705 Task marked as completed \u2014 don't forget to commit & push your changes!` : `Updated ${updatedCount} task(s) in repo "${repo}".`;
1361
+ const summaryText = isCompleted ? `Updated ${updatedCount} task(s) in repo "${repo}". \u2705 Task marked as completed \u2014 don't forget to commit your changes!` : `Updated ${updatedCount} task(s) in repo "${repo}".`;
1362
1362
  return createMcpResponse(
1363
1363
  {
1364
1364
  success: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.8.12",
3
+ "version": "0.8.14",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",