local-mcp 3.0.263 → 3.0.265

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 (3) hide show
  1. package/README.md +3 -4
  2. package/package.json +1 -1
  3. package/setup.js +17 -0
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # LMCP
2
2
 
3
- > Give your AI assistant native access to your apps — 144 local tools on macOS for Outlook, Mail, Calendar, Contacts, iMessage, Teams, Slack, WhatsApp, OneDrive, Google Drive, Notes, OmniFocus, Safari, Word, Excel, PowerPoint, Stocks, NordVPN, Microsoft 365, Evernote, and more. Everything runs locally. Your data never leaves your machine.
3
+ > Give your AI assistant native access to your apps — 138 local tools on macOS for Outlook, Mail, Calendar, Contacts, iMessage, Teams, Slack, WhatsApp, OneDrive, Google Drive, Notes, OmniFocus, Safari, Word, Excel, PowerPoint, Stocks, NordVPN, Microsoft 365, and more. Everything runs locally. Your data never leaves your machine.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/local-mcp)](https://www.npmjs.com/package/local-mcp)
6
6
  [![macOS 13+](https://img.shields.io/badge/macOS-13%2B-blue)](https://local-mcp.com?ref=npm)
@@ -61,10 +61,9 @@ LMCP runs a native MCP server that bridges your Mac apps to any AI client:
61
61
  | **Safari** | Bookmarks, open tabs, click/type/fill forms, run JavaScript |
62
62
  | **Microsoft 365** | Read/send email, manage calendar, search org directory — device code login, works with Outlook.com and work accounts |
63
63
  | **ServiceNow** | Search/create incidents, get details, search Knowledge Base — Basic auth |
64
- | **Evernote** | Search/read notes, list notebooks, create/update notes — OAuth 2.0 login |
65
64
  | **NordVPN** | Status, server recommendations, diagnostics |
66
65
 
67
- ## 115 MCP Tools (macOS)
66
+ ## 138 MCP Tools (macOS)
68
67
 
69
68
  Email (9): `list_accounts` `list_emails` `read_email` `send_email` `reply_email` `search_emails` `move_email` `save_attachment` `create_email_folder`
70
69
 
@@ -104,7 +103,7 @@ Microsoft 365 (16): `connect_m365_account` `disconnect_m365_account` `m365_list_
104
103
 
105
104
  ServiceNow (9): `connect_servicenow` `disconnect_servicenow` `servicenow_list_my_incidents` `servicenow_search_incidents` `servicenow_get_incident` `servicenow_create_incident` `servicenow_update_incident` `servicenow_add_comment` `servicenow_search_kb`
106
105
 
107
- Evernote (7): `connect_evernote` `disconnect_evernote` `evernote_list_notebooks` `search_evernote` `evernote_read_note` `evernote_create_note` `evernote_update_note`
106
+ _Evernote — coming soon (support is being rebuilt; not included in the 138 count above)._
108
107
 
109
108
  NordVPN (3): `nordvpn_status` `nordvpn_servers` `nordvpn_diagnose`
110
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-mcp",
3
- "version": "3.0.263",
3
+ "version": "3.0.265",
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
@@ -331,6 +331,23 @@ function injectMcpConfig(client, command = NPX_COMMAND, args = NPX_ARGS) {
331
331
  // ── Main ──────────────────────────────────────────────────────────────────────
332
332
 
333
333
  async function runSetup(opts = {}) {
334
+ // macOS only. `npx local-mcp setup` on Windows/Linux used to silently download +
335
+ // configure the (still-present) Go server, bypassing the Mac-only waitlist that the
336
+ // landing page and cloud connector enforce. Gate it here so new non-mac installs get
337
+ // the waitlist message instead of a working-but-unsupported install. (The legacy
338
+ // Windows R2 binaries stay so the existing fleet keeps auto-updating.)
339
+ if (process.platform !== 'darwin') {
340
+ const osName = process.platform === 'win32' ? 'Windows' : process.platform === 'linux' ? 'Linux' : process.platform
341
+ console.log(`\n LMCP is macOS-only right now — ${osName} isn't supported yet.`)
342
+ console.log(' Join the waitlist to be notified when it ships: https://local-mcp.com\n')
343
+ try { // best-effort: record the gated attempt so we can size non-mac demand
344
+ const https = require('https')
345
+ const req = https.request({ hostname: BACKEND_HOST, path: '/install/started/npm-gated-' + process.platform, method: 'POST', timeout: 2500 })
346
+ req.on('error', () => {}); req.end()
347
+ } catch {}
348
+ return
349
+ }
350
+
334
351
  const forceAll = opts.all || process.argv.includes('--all')
335
352
  const refArg = process.argv.find(a => a.startsWith('--ref='))
336
353
  if (refArg) process.env.LMCP_REF = refArg.split('=')[1]