@memoraone/mcp 0.1.11 → 0.1.12
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 +3 -3
- package/dist/index.cjs +3 -3
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -771,7 +771,7 @@ async function main() {
|
|
|
771
771
|
};
|
|
772
772
|
}
|
|
773
773
|
);
|
|
774
|
-
console.
|
|
774
|
+
console.error("[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.
|
|
795
|
+
console.error(`[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.
|
|
800
|
+
console.error("[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.
|
|
774
|
+
console.error("[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.
|
|
795
|
+
console.error(`[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.
|
|
800
|
+
console.error("[memoraone-mcp] MCP server ready");
|
|
801
801
|
}
|
|
802
802
|
main().catch((err) => {
|
|
803
803
|
console.error("[memoraone-mcp] fatal error", err);
|