local-mcp 3.0.332 → 3.0.333
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 +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Local MCP
|
|
2
2
|
|
|
3
|
-
> **The only Mac MCP you can use from ChatGPT & Claude.ai on the web** — plus
|
|
3
|
+
> **The only Mac MCP you can use from ChatGPT & Claude.ai on the web** — plus 184 local tools for Claude Desktop, Cursor, Windsurf, VS Code & Zed. Connect any AI to Mail, Calendar, Contacts, iMessage, Teams, Slack, WhatsApp, Signal, OneDrive, Google Drive, Microsoft 365, Notes, Reminders, OmniFocus, Safari, Chrome, Word/Excel/PowerPoint and more. 100% local, no API keys, free — 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,6 +62,7 @@ LMCP runs a native MCP server that bridges your Mac apps to any AI client:
|
|
|
62
62
|
| **Notes** | List, read, search, create notes |
|
|
63
63
|
| **Messages** | List chats, read, search, and send iMessages |
|
|
64
64
|
| **Stocks** | Real-time quotes, historical charts, symbol search |
|
|
65
|
+
| **Weather** | Current conditions + forecast for any city (Open-Meteo, no key) |
|
|
65
66
|
| **Finder** | Search files via Spotlight, list directory contents |
|
|
66
67
|
| **Safari** | Bookmarks, open tabs, click/type/fill forms, run JavaScript |
|
|
67
68
|
| **Chrome** | Open tabs, navigate, read pages, click/type/fill forms, run JavaScript |
|
|
@@ -72,7 +73,7 @@ LMCP runs a native MCP server that bridges your Mac apps to any AI client:
|
|
|
72
73
|
|
|
73
74
|
|
|
74
75
|
|
|
75
|
-
## All
|
|
76
|
+
## All 184 tools (macOS)
|
|
76
77
|
|
|
77
78
|
Email (12): `list_accounts` `list_email_accounts` `list_emails` `read_email` `send_email` `reply_email` `create_draft` `search_emails` `move_email` `save_attachment` `create_email_folder` `list_email_folders`
|
|
78
79
|
|
|
@@ -114,6 +115,8 @@ Messages (4): `list_message_chats` `read_messages` `search_messages` `send_messa
|
|
|
114
115
|
|
|
115
116
|
Stocks (3): `stocks_get_quote` `stocks_get_chart` `stocks_search_symbol`
|
|
116
117
|
|
|
118
|
+
Weather (1): `get_weather`
|
|
119
|
+
|
|
117
120
|
Finder (5): `finder_search` `finder_list` `fs_list` `fs_read` `fs_search`
|
|
118
121
|
|
|
119
122
|
Safari (13): `list_safari_bookmarks` `safari_list_tabs` `safari_read_tab` `safari_search_tabs` `safari_navigate` `safari_go_back` `safari_setup_check` `safari_evaluate_js` `safari_click` `safari_type` `safari_fill_form` `safari_wait_for` `safari_query_selector_all`
|
package/index.js
CHANGED
|
@@ -271,7 +271,12 @@ async function main() {
|
|
|
271
271
|
// 'stdio' behavior). Fixes Tray-less npm users (npx local-mcp without the DMG),
|
|
272
272
|
// same root cause as the .mcpb stdio→--auto fix.
|
|
273
273
|
const spawnArgs = process.platform === 'darwin' ? ['--auto'] : []
|
|
274
|
-
|
|
274
|
+
// Pass the npm PACKAGE version to the server so the heartbeat reports which index.js actually
|
|
275
|
+
// ran (vs the server binary version). A resurrection loop is often a STALE cached npx package
|
|
276
|
+
// (pre-guard) — this lets us tell that apart from a guard that's failing on the current package.
|
|
277
|
+
let _pkgVer = ''
|
|
278
|
+
try { _pkgVer = require('./package.json').version || '' } catch {}
|
|
279
|
+
const child = spawn(binaryPath, spawnArgs, { stdio: 'inherit', env: { ...process.env, LMCP_NPM_VERSION: _pkgVer } })
|
|
275
280
|
child.on('error', (err) => {
|
|
276
281
|
process.stderr.write(`Error ejecutando LMCP: ${err.message}\n`)
|
|
277
282
|
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.333",
|
|
4
4
|
"description": "Let ChatGPT, Claude, Cursor & any MCP client actually use your Mac — read & reply to email, manage your calendar, text over iMessage, find files, work with Teams, Slack & Office. On your Mac, no API keys, free.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|