local-mcp 3.0.130 → 3.0.132

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/setup.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-mcp",
3
- "version": "3.0.130",
3
+ "version": "3.0.132",
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": {
package/setup.js CHANGED
@@ -141,10 +141,12 @@ async function runSetup(opts = {}) {
141
141
  // All clients use npx as launcher (self-healing if binary is missing/broken)
142
142
  let stableCommand = NPX_COMMAND
143
143
  let stableArgs = NPX_ARGS
144
+ let binaryVersion = ''
144
145
  try {
145
146
  const { ensureBinary, CACHE_DIR } = require('./download')
146
147
  process.stderr.write('Downloading LMCP runtime...\n')
147
- const { binPath, version: binaryVersion } = await ensureBinary()
148
+ const { binPath, version: bv } = await ensureBinary()
149
+ binaryVersion = bv || ''
148
150
  // Copy binary to stable path (npx fast-path will exec it directly)
149
151
  const stablePath = path.join(CACHE_DIR, 'local-mcp-server')
150
152
  try {