local-mcp 1.83.0 → 1.85.0
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 +20 -2
- package/package.json +1 -1
- package/setup.js +12 -5
package/README.md
CHANGED
|
@@ -40,10 +40,14 @@ Local MCP runs a native MCP server that bridges your Mac apps to any AI client:
|
|
|
40
40
|
| **Teams** | Read chats, channels, messages (no tokens needed) |
|
|
41
41
|
| **OneDrive** | List, read, write, search, move, delete files |
|
|
42
42
|
| **Documents** | Word, Excel, PowerPoint, PDF |
|
|
43
|
+
| **Outlook** | Read, search, send emails, list/create calendar events (direct Outlook.app access) |
|
|
44
|
+
| **Reminders** | List, create, complete reminders |
|
|
45
|
+
| **Notes** | List, read, search, create notes |
|
|
46
|
+
| **More** | Messages, Finder, Safari Bookmarks |
|
|
43
47
|
|
|
44
|
-
##
|
|
48
|
+
## 62 MCP Tools
|
|
45
49
|
|
|
46
|
-
Email: `list_accounts`, `list_emails`, `read_email`, `send_email`, `reply_email`, `search_emails`, `move_email`, `save_attachment`
|
|
50
|
+
Email: `list_accounts`, `list_emails`, `read_email`, `send_email`, `reply_email`, `search_emails`, `move_email`, `save_attachment`, `create_email_folder`
|
|
47
51
|
|
|
48
52
|
Calendar: `list_calendar_names`, `list_calendar_events`, `create_calendar_event`, `delete_calendar_event`
|
|
49
53
|
|
|
@@ -55,6 +59,20 @@ OneDrive: `onedrive_root`, `onedrive_list_files`, `onedrive_read_file`, `onedriv
|
|
|
55
59
|
|
|
56
60
|
Documents: `word_create`, `word_read`, `word_append`, `excel_create`, `excel_read`, `excel_write_cell`, `ppt_create`, `ppt_read`, `pdf_read`
|
|
57
61
|
|
|
62
|
+
Outlook: `outlook_list_emails`, `outlook_read_email`, `outlook_search_emails`, `outlook_send_email`, `outlook_list_events`, `outlook_create_event`
|
|
63
|
+
|
|
64
|
+
Reminders: `list_reminder_lists`, `list_reminders`, `create_reminder`, `complete_reminder`
|
|
65
|
+
|
|
66
|
+
Notes: `list_notes`, `read_note`, `search_notes`, `create_note`
|
|
67
|
+
|
|
68
|
+
Messages: `list_message_chats`, `read_messages`, `search_messages`
|
|
69
|
+
|
|
70
|
+
Finder: `finder_search`, `finder_list`
|
|
71
|
+
|
|
72
|
+
Safari: `list_safari_bookmarks`
|
|
73
|
+
|
|
74
|
+
Utilities: `diagnose`, `report_bug`, `request_feature`, `send_logs`, `lmcp_help`, `list_my_feedback`, `close_feedback`
|
|
75
|
+
|
|
58
76
|
## Safety
|
|
59
77
|
|
|
60
78
|
- Email send/reply always shows a preview before sending — you confirm first
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.85.0",
|
|
4
4
|
"description": "MCP server for macOS \u2014 connect Claude Desktop, Cursor, Windsurf to Mail, Calendar, Contacts, Teams, OneDrive. Privacy-first: all data stays on your Mac.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
package/setup.js
CHANGED
|
@@ -156,16 +156,23 @@ async function runSetup(opts = {}) {
|
|
|
156
156
|
|
|
157
157
|
console.log('\n──────────────────────────────────────')
|
|
158
158
|
if (configured.length > 0) {
|
|
159
|
-
console.log(`✅
|
|
160
|
-
console.log('
|
|
159
|
+
console.log(`✅ Local MCP configured for: ${configured.join(', ')}\n`)
|
|
160
|
+
console.log('┌─────────────────────────────────────────────────────┐')
|
|
161
|
+
console.log('│ NEXT STEP — This is important: │')
|
|
162
|
+
console.log('│ │')
|
|
163
|
+
console.log(`│ Quit and reopen ${configured[0].padEnd(35)}│`)
|
|
164
|
+
console.log('│ Local MCP will appear automatically. │')
|
|
165
|
+
console.log('│ │')
|
|
166
|
+
console.log('│ Then try: "Summarize my unread emails" │')
|
|
167
|
+
console.log('└─────────────────────────────────────────────────────┘\n')
|
|
161
168
|
}
|
|
162
169
|
if (failed.length > 0) {
|
|
163
|
-
console.log(`⚠
|
|
170
|
+
console.log(`⚠ Could not configure: ${failed.join(', ')} — check permissions and try again.\n`)
|
|
164
171
|
}
|
|
165
172
|
|
|
166
|
-
console.log('
|
|
173
|
+
console.log('MCP config written:')
|
|
167
174
|
console.log(JSON.stringify({ mcpServers: { 'local-mcp': { command: NPX_COMMAND, args: NPX_ARGS } } }, null, 2))
|
|
168
|
-
console.log('\
|
|
175
|
+
console.log('\nOptional — full app with tray menu bar:')
|
|
169
176
|
console.log(' curl -fsSL https://local-mcp.com/install | bash\n')
|
|
170
177
|
|
|
171
178
|
// Ping de tracking (fire-and-forget, no bloquea)
|