@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.
Files changed (2) hide show
  1. package/dist/index.js +6 -3
  2. 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
- program.outputHelp();
5926
- process.exit(0);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/mcp-compliance",
3
- "version": "0.13.5",
3
+ "version": "0.14.0",
4
4
  "description": "CLI tool and MCP server that tests MCP servers for spec compliance",
5
5
  "license": "MIT",
6
6
  "author": "Yaw Labs <contact@yaw.sh> (https://yaw.sh)",