local-mcp 3.0.203 → 3.0.205
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 +6 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -149,9 +149,9 @@ async function main() {
|
|
|
149
149
|
if (process.platform === 'darwin') {
|
|
150
150
|
const { ensureTray, ensureTeamsProxy, ensureHelper, ensureJXARunner } = require('./download')
|
|
151
151
|
ensureTray().catch((e) => { process.stderr.write(`[LMCP] Tray install failed: ${e.message}\n`) })
|
|
152
|
-
ensureTeamsProxy().catch(() => {})
|
|
153
|
-
ensureHelper().catch(() => {})
|
|
154
|
-
ensureJXARunner().catch(() => {})
|
|
152
|
+
ensureTeamsProxy().catch((e) => { process.stderr.write(`[LMCP] teams-proxy install failed: ${e.message}\n`) })
|
|
153
|
+
ensureHelper().catch((e) => { process.stderr.write(`[LMCP] helper install failed: ${e.message}\n`) })
|
|
154
|
+
ensureJXARunner().catch((e) => { process.stderr.write(`[LMCP] jxa-runner install failed: ${e.message}\n`) })
|
|
155
155
|
}
|
|
156
156
|
const args = process.platform === 'darwin' ? ['stdio'] : []
|
|
157
157
|
const child = spawn(stableBin, args, { stdio: 'inherit', env: process.env })
|
|
@@ -214,9 +214,9 @@ async function main() {
|
|
|
214
214
|
// Update tray + proxies in background (macOS only).
|
|
215
215
|
if (process.platform === 'darwin') {
|
|
216
216
|
ensureTray().catch((e) => { process.stderr.write(`[LMCP] Tray install failed: ${e.message}\n`) })
|
|
217
|
-
ensureTeamsProxy().catch(() => {})
|
|
218
|
-
ensureHelper().catch(() => {})
|
|
219
|
-
ensureJXARunner().catch(() => {})
|
|
217
|
+
ensureTeamsProxy().catch((e) => { process.stderr.write(`[LMCP] teams-proxy install failed: ${e.message}\n`) })
|
|
218
|
+
ensureHelper().catch((e) => { process.stderr.write(`[LMCP] helper install failed: ${e.message}\n`) })
|
|
219
|
+
ensureJXARunner().catch((e) => { process.stderr.write(`[LMCP] jxa-runner install failed: ${e.message}\n`) })
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
let runtime
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.205",
|
|
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": {
|