local-mcp 3.0.152 → 3.0.154

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/download.js +2 -2
  2. package/package.json +3 -3
package/download.js CHANGED
@@ -591,8 +591,8 @@ async function _ensureTrayWindows() {
591
591
  fs.writeFileSync(path.join(startupDir, 'LMCP Tray.cmd'), `@echo off\r\nstart "" "${trayPath}"`, 'ascii')
592
592
  }
593
593
 
594
- // Launch tray now
595
- try { spawn(trayPath, [], { detached: true, stdio: 'ignore' }).unref() } catch {}
594
+ // Launch tray now (use cmd start on Windows for proper detach)
595
+ try { execSync(`start "" "${trayPath}"`, { stdio: 'ignore', shell: true }) } catch {}
596
596
 
597
597
  process.stderr.write(` Tray installed at ${trayPath}\n`)
598
598
  return trayPath
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "local-mcp",
3
- "version": "3.0.152",
4
- "description": "LMCP \u2014 connect Claude Desktop, Cursor, Windsurf to Mail, Calendar, Contacts, Teams, OneDrive on macOS. Privacy-first: all data stays on your Mac.",
3
+ "version": "3.0.154",
4
+ "description": "LMCP connect Claude Desktop, Cursor, Windsurf to Mail, Calendar, Contacts, Teams, OneDrive on macOS. Privacy-first: all data stays on your Mac.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "local-mcp": "index.js"
@@ -73,4 +73,4 @@
73
73
  "url": "https://github.com/lanchuske/local-mcp/issues"
74
74
  },
75
75
  "mcpName": "com.local-mcp/local-mcp"
76
- }
76
+ }