@yawlabs/mcp-compliance 0.13.5 → 0.14.0
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 +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5922,7 +5922,10 @@ program.command("mcp").description("Start the MCP compliance server (stdio trans
|
|
|
5922
5922
|
await startServer();
|
|
5923
5923
|
});
|
|
5924
5924
|
if (process.argv.length <= 2) {
|
|
5925
|
-
|
|
5926
|
-
|
|
5925
|
+
startServer().catch((err) => {
|
|
5926
|
+
console.error(err);
|
|
5927
|
+
process.exit(1);
|
|
5928
|
+
});
|
|
5929
|
+
} else {
|
|
5930
|
+
program.parse();
|
|
5927
5931
|
}
|
|
5928
|
-
program.parse();
|
package/package.json
CHANGED