local-mcp 3.0.189 → 3.0.192
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/README.md +5 -2
- package/index.js +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# LMCP
|
|
2
2
|
|
|
3
|
-
> Give your AI assistant native access to your apps —
|
|
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.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/local-mcp)
|
|
6
6
|
[](https://local-mcp.com?ref=npm)
|
|
@@ -62,9 +62,10 @@ LMCP runs a native MCP server that bridges your Mac apps to any AI client:
|
|
|
62
62
|
| **Safari** | Bookmarks, open tabs, click/type/fill forms, run JavaScript |
|
|
63
63
|
| **Microsoft 365** | Read/send email, manage calendar, search org directory — device code login, works with Outlook.com and work accounts |
|
|
64
64
|
| **ServiceNow** | Search/create incidents, get details, search Knowledge Base — Basic auth |
|
|
65
|
+
| **Evernote** | Search/read notes, list notebooks, create/update notes — OAuth 2.0 login |
|
|
65
66
|
| **NordVPN** | Status, server recommendations, diagnostics |
|
|
66
67
|
|
|
67
|
-
##
|
|
68
|
+
## 140 MCP Tools
|
|
68
69
|
|
|
69
70
|
Email (9): `list_accounts` `list_emails` `read_email` `send_email` `reply_email` `search_emails` `move_email` `save_attachment` `create_email_folder`
|
|
70
71
|
|
|
@@ -104,6 +105,8 @@ Microsoft 365 (16): `connect_m365_account` `disconnect_m365_account` `m365_list_
|
|
|
104
105
|
|
|
105
106
|
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
107
|
|
|
108
|
+
Evernote (7): `connect_evernote` `disconnect_evernote` `list_notebooks` `search_evernote` `read_note` `create_note` `update_note`
|
|
109
|
+
|
|
107
110
|
NordVPN (3): `nordvpn_status` `nordvpn_servers` `nordvpn_diagnose`
|
|
108
111
|
|
|
109
112
|
System (7): `run_diagnostics` `update_local_mcp` `update_self_diagnosis` `daily_brief` `report_problem` `request_feature` `request_integration`
|
package/index.js
CHANGED
|
@@ -249,8 +249,9 @@ async function main() {
|
|
|
249
249
|
if (fs.existsSync(settingsSrc)) fs.copyFileSync(settingsSrc, settingsDst)
|
|
250
250
|
} catch {}
|
|
251
251
|
|
|
252
|
-
// Run the binary
|
|
253
|
-
const
|
|
252
|
+
// Run the binary (macOS binary requires 'stdio' arg to enter MCP stdio mode)
|
|
253
|
+
const spawnArgs = process.platform === 'darwin' ? ['stdio'] : []
|
|
254
|
+
const child = spawn(binPath, spawnArgs, { stdio: 'inherit', env: process.env })
|
|
254
255
|
child.on('error', (err) => {
|
|
255
256
|
process.stderr.write(`Error ejecutando LMCP: ${err.message}\n`)
|
|
256
257
|
process.exit(1)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.192",
|
|
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": {
|