local-mcp 3.0.152 → 3.0.153
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/download.js +2 -2
- package/package.json +1 -1
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 {
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.153",
|
|
4
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.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|