local-mcp 3.0.158 → 3.0.160
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 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -153,7 +153,8 @@ async function main() {
|
|
|
153
153
|
ensureHelper().catch(() => {})
|
|
154
154
|
ensureJXARunner().catch(() => {})
|
|
155
155
|
}
|
|
156
|
-
const
|
|
156
|
+
const args = process.platform === 'darwin' ? ['stdio'] : []
|
|
157
|
+
const child = spawn(stableBin, args, { stdio: 'inherit', env: process.env })
|
|
157
158
|
child.on('error', () => process.exit(1))
|
|
158
159
|
child.on('exit', (code) => process.exit(code ?? 0))
|
|
159
160
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.160",
|
|
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": {
|