@mcp-s/cli 0.0.14 → 0.0.15

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/daemon.js CHANGED
@@ -414,7 +414,7 @@ import { join as join2 } from "path";
414
414
  import { fileURLToPath } from "url";
415
415
 
416
416
  // src/version.ts
417
- var VERSION = "0.0.14";
417
+ var VERSION = "0.0.15";
418
418
 
419
419
  // src/client.ts
420
420
  function getRetryConfig(settings) {
package/dist/index.js CHANGED
@@ -1153,6 +1153,7 @@ function isDaemonValid(serverName, config) {
1153
1153
  debug(`[daemon-client] Process ${pidInfo.pid} not running, cleaning up`);
1154
1154
  removePidFile(serverName);
1155
1155
  removeSocketFile(serverName);
1156
+ removeReadyFile(serverName);
1156
1157
  return false;
1157
1158
  }
1158
1159
  const currentHash = getConfigHash(config);
@@ -1163,6 +1164,7 @@ function isDaemonValid(serverName, config) {
1163
1164
  killProcess(pidInfo.pid);
1164
1165
  removePidFile(serverName);
1165
1166
  removeSocketFile(serverName);
1167
+ removeReadyFile(serverName);
1166
1168
  return false;
1167
1169
  }
1168
1170
  if (!existsSync3(socketPath)) {
@@ -1298,7 +1300,7 @@ async function cleanupOrphanedDaemons() {
1298
1300
  }
1299
1301
 
1300
1302
  // src/version.ts
1301
- var VERSION = "0.0.14";
1303
+ var VERSION = "0.0.15";
1302
1304
 
1303
1305
  // src/client.ts
1304
1306
  function getRetryConfig(settings) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-s/cli",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "A lightweight CLI for connecting AI agents to the Webrix MCP Gateway",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",