local-mcp 3.0.201 → 3.0.203

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 +2 -2
  2. package/package.json +1 -1
  3. package/setup.js +3 -0
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # LMCP
2
2
 
3
- > Give your AI assistant native access to your apps — 248 tools across macOS (140) and Windows (108) 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 — 221 tools across macOS (113) and Windows (108) 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.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/local-mcp)](https://www.npmjs.com/package/local-mcp)
6
6
  [![macOS 12+](https://img.shields.io/badge/macOS-12%2B-blue)](https://local-mcp.com?ref=npm)
@@ -65,7 +65,7 @@ LMCP runs a native MCP server that bridges your Mac apps to any AI client:
65
65
  | **Evernote** | Search/read notes, list notebooks, create/update notes — OAuth 2.0 login |
66
66
  | **NordVPN** | Status, server recommendations, diagnostics |
67
67
 
68
- ## 140 MCP Tools
68
+ ## 113 MCP Tools (macOS)
69
69
 
70
70
  Email (9): `list_accounts` `list_emails` `read_email` `send_email` `reply_email` `search_emails` `move_email` `save_attachment` `create_email_folder`
71
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-mcp",
3
- "version": "3.0.201",
3
+ "version": "3.0.203",
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
@@ -427,9 +427,11 @@ async function runSetup(opts = {}) {
427
427
  // Detectar clientes
428
428
  const detected = CLIENTS.filter(c => c.detect())
429
429
  const notDetected = CLIENTS.filter(c => !c.detect())
430
+ const _npmPkgVersion = (() => { try { return require('./package.json').version } catch { return '' } })()
430
431
  _trackSetupStep('detect', detected.length > 0 ? 'ok' : 'no_clients', '', {
431
432
  clientsFound: detected.map(c => c.id),
432
433
  clientsNotFound: notDetected.map(c => c.id),
434
+ npmVersion: _npmPkgVersion,
433
435
  })
434
436
 
435
437
  if (detected.length === 0) {
@@ -867,6 +869,7 @@ function _trackSetupStep(step, status, client, detail) {
867
869
  if (detail.clientsNotFound) payload.clients_not_found = detail.clientsNotFound.join(',')
868
870
  if (detail.toolCount >= 0) payload.tool_count = detail.toolCount
869
871
  if (detail.binaryVersion) payload.binary_version = detail.binaryVersion
872
+ if (detail.npmVersion) payload.npm_version = detail.npmVersion
870
873
  }
871
874
  const data = JSON.stringify(payload)
872
875
  const req = https.request({