@memoraone/mcp 0.1.10 → 0.1.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.
package/dist/cli.cjs CHANGED
@@ -771,7 +771,7 @@ async function main() {
771
771
  };
772
772
  }
773
773
  );
774
- console.error("[memoraone-mcp] Starting MCP server with", registeredToolNames.length, "tools");
774
+ console.info("[memoraone-mcp] Starting MCP server with", registeredToolNames.length, "tools");
775
775
  const transport = new import_stdio.StdioServerTransport();
776
776
  await server.connect(transport);
777
777
  let heartbeatInterval = null;
@@ -792,12 +792,12 @@ async function main() {
792
792
  if (globalThis.__memoraHeartbeatInterval) {
793
793
  clearInterval(globalThis.__memoraHeartbeatInterval);
794
794
  }
795
- console.error(`[memoraone-mcp] Received ${signal}, shutting down`);
795
+ console.info(`[memoraone-mcp] Received ${signal}, shutting down`);
796
796
  process.exit(0);
797
797
  };
798
798
  process.on("SIGINT", () => shutdown("SIGINT"));
799
799
  process.on("SIGTERM", () => shutdown("SIGTERM"));
800
- console.error("[memoraone-mcp] MCP server ready");
800
+ console.info("[memoraone-mcp] MCP server ready");
801
801
  }
802
802
  main().catch((err) => {
803
803
  console.error("[memoraone-mcp] fatal error", err);
package/dist/index.cjs CHANGED
@@ -771,7 +771,7 @@ async function main() {
771
771
  };
772
772
  }
773
773
  );
774
- console.error("[memoraone-mcp] Starting MCP server with", registeredToolNames.length, "tools");
774
+ console.info("[memoraone-mcp] Starting MCP server with", registeredToolNames.length, "tools");
775
775
  const transport = new import_stdio.StdioServerTransport();
776
776
  await server.connect(transport);
777
777
  let heartbeatInterval = null;
@@ -792,12 +792,12 @@ async function main() {
792
792
  if (globalThis.__memoraHeartbeatInterval) {
793
793
  clearInterval(globalThis.__memoraHeartbeatInterval);
794
794
  }
795
- console.error(`[memoraone-mcp] Received ${signal}, shutting down`);
795
+ console.info(`[memoraone-mcp] Received ${signal}, shutting down`);
796
796
  process.exit(0);
797
797
  };
798
798
  process.on("SIGINT", () => shutdown("SIGINT"));
799
799
  process.on("SIGTERM", () => shutdown("SIGTERM"));
800
- console.error("[memoraone-mcp] MCP server ready");
800
+ console.info("[memoraone-mcp] MCP server ready");
801
801
  }
802
802
  main().catch((err) => {
803
803
  console.error("[memoraone-mcp] fatal error", err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoraone/mcp",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "bin": {