local-mcp 1.89.1 → 1.89.2
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
|
@@ -87,7 +87,8 @@ async function main() {
|
|
|
87
87
|
|
|
88
88
|
// Binario PyInstaller standalone — sin Python, sin dependencias externas
|
|
89
89
|
const { binPath } = runtime
|
|
90
|
-
|
|
90
|
+
// slice(3): skip node, index.js, and cmd ('stdio') — 'stdio' ya está hardcodeado abajo
|
|
91
|
+
const extraArgs = process.argv.slice(3)
|
|
91
92
|
const result = spawnSync(binPath, ['stdio', ...extraArgs], {
|
|
92
93
|
stdio: 'inherit',
|
|
93
94
|
env: process.env,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "1.89.
|
|
3
|
+
"version": "1.89.2",
|
|
4
4
|
"description": "MCP server for macOS \u2014 connect Claude Desktop, Cursor, Windsurf to Mail, Calendar, Contacts, Teams, OneDrive. Privacy-first: all data stays on your Mac.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|