telique-mcp 1.0.6 → 1.0.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.
Files changed (2) hide show
  1. package/dist/setup.js +2 -1
  2. package/package.json +1 -1
package/dist/setup.js CHANGED
@@ -304,7 +304,8 @@ function getClaudeDesktopConfigPath() {
304
304
  }
305
305
  function commandExists(cmd) {
306
306
  try {
307
- execSync(`which ${cmd} 2>/dev/null`, { stdio: "ignore" });
307
+ const check = process.platform === "win32" ? `where ${cmd}` : `which ${cmd}`;
308
+ execSync(check, { stdio: "ignore" });
308
309
  return true;
309
310
  }
310
311
  catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telique-mcp",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "MCP server for Telique telecom APIs (RouteLink, LRN, CNAM, LERG)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",