rentline-sandbox 0.1.6 → 0.1.7
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/index.js
CHANGED
|
@@ -15,7 +15,7 @@ if (args[0] === "setup" || args[0] === "--setup") {
|
|
|
15
15
|
process.exit(0);
|
|
16
16
|
}
|
|
17
17
|
if (args.length === 0 || args[0] === "server" || args[0] === "--server") {
|
|
18
|
-
const { startServer } = await import("./server-
|
|
18
|
+
const { startServer } = await import("./server-AQKLP4RV.js");
|
|
19
19
|
await startServer();
|
|
20
20
|
} else {
|
|
21
21
|
const program = new Command();
|
|
@@ -769,6 +769,11 @@ async function startServer() {
|
|
|
769
769
|
const transport = new StdioServerTransport();
|
|
770
770
|
await server.connect(transport);
|
|
771
771
|
}
|
|
772
|
+
startServer().catch((e) => {
|
|
773
|
+
process.stderr.write(`rentline-sandbox MCP server error: ${e}
|
|
774
|
+
`);
|
|
775
|
+
process.exit(1);
|
|
776
|
+
});
|
|
772
777
|
export {
|
|
773
778
|
startServer
|
|
774
779
|
};
|
package/dist/server.js
CHANGED
|
@@ -851,6 +851,11 @@ async function startServer() {
|
|
|
851
851
|
const transport = new StdioServerTransport();
|
|
852
852
|
await server.connect(transport);
|
|
853
853
|
}
|
|
854
|
+
startServer().catch((e) => {
|
|
855
|
+
process.stderr.write(`rentline-sandbox MCP server error: ${e}
|
|
856
|
+
`);
|
|
857
|
+
process.exit(1);
|
|
858
|
+
});
|
|
854
859
|
export {
|
|
855
860
|
startServer
|
|
856
861
|
};
|