local-mcp 3.0.143 → 3.0.144
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -121,7 +121,7 @@ async function main() {
|
|
|
121
121
|
// Cached binary is same or newer — use fast path, no download needed
|
|
122
122
|
if (process.platform === 'darwin') {
|
|
123
123
|
const { ensureTray, ensureTeamsProxy, ensureHelper, ensureJXARunner } = require('./download')
|
|
124
|
-
ensureTray().catch(() => {})
|
|
124
|
+
ensureTray().catch((e) => { process.stderr.write(`[LMCP] Tray install failed: ${e.message}\n`) })
|
|
125
125
|
ensureTeamsProxy().catch(() => {})
|
|
126
126
|
ensureHelper().catch(() => {})
|
|
127
127
|
ensureJXARunner().catch(() => {})
|
|
@@ -185,7 +185,7 @@ async function main() {
|
|
|
185
185
|
|
|
186
186
|
// Update tray + proxies in background (macOS only).
|
|
187
187
|
if (process.platform === 'darwin') {
|
|
188
|
-
ensureTray().catch(() => {})
|
|
188
|
+
ensureTray().catch((e) => { process.stderr.write(`[LMCP] Tray install failed: ${e.message}\n`) })
|
|
189
189
|
ensureTeamsProxy().catch(() => {})
|
|
190
190
|
ensureHelper().catch(() => {})
|
|
191
191
|
ensureJXARunner().catch(() => {})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.144",
|
|
4
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": {
|