@vheins/local-memory-mcp 0.8.10 → 0.8.11

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.
@@ -166,7 +166,7 @@ function createFileSink(logDir, maxFiles = 5) {
166
166
  const date = (/* @__PURE__ */ new Date()).toISOString().slice(0, 10).replace(/-/g, "");
167
167
  const logFile = `${logDir}/mcp-${date}.log`;
168
168
  return (payload) => {
169
- const line = `${(/* @__PURE__ */ new Date()).toISOString()} [${payload.level.toUpperCase()}] ${JSON.stringify(payload.data)}
169
+ const line = `${(/* @__PURE__ */ new Date()).toISOString()} [${payload.level.toUpperCase()}] [pid:${process.pid}] ${JSON.stringify(payload.data)}
170
170
  `;
171
171
  try {
172
172
  fs2.appendFileSync(logFile, line);
@@ -6,7 +6,7 @@ import {
6
6
  TOOL_DEFINITIONS,
7
7
  listResources,
8
8
  logger
9
- } from "../chunk-L3HUZO2K.js";
9
+ } from "../chunk-PAEKULGL.js";
10
10
 
11
11
  // src/dashboard/server.ts
12
12
  import express from "express";
@@ -43,7 +43,7 @@ import {
43
43
  setLogLevel,
44
44
  updateSessionFromInitialize,
45
45
  updateSessionRoots
46
- } from "../chunk-L3HUZO2K.js";
46
+ } from "../chunk-PAEKULGL.js";
47
47
 
48
48
  // src/mcp/server.ts
49
49
  import readline from "readline";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.8.10",
3
+ "version": "0.8.11",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",