local-mcp 3.0.238 → 3.0.240
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 +2 -2
- package/package.json +1 -1
- package/setup.js +5 -2
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ Reminders (4): `list_reminder_lists` `list_reminders` `create_reminder` `complet
|
|
|
89
89
|
|
|
90
90
|
To Do (4): `todo_list_lists` `todo_list_tasks` `todo_create_task` `todo_complete_task`
|
|
91
91
|
|
|
92
|
-
OmniFocus (
|
|
92
|
+
OmniFocus (7): `list_omnifocus_tasks` `list_omnifocus_projects` `list_omnifocus_folders` `list_omnifocus_tags` `search_omnifocus_tasks` `create_omnifocus_task` `complete_omnifocus_task`
|
|
93
93
|
|
|
94
94
|
Notes (4): `list_notes` `read_note` `search_notes` `create_note`
|
|
95
95
|
|
|
@@ -128,7 +128,7 @@ System (7): `run_diagnostics` `update_local_mcp` `update_self_diagnosis` `daily_
|
|
|
128
128
|
| Client | Path |
|
|
129
129
|
|--------|------|
|
|
130
130
|
| Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` |
|
|
131
|
-
| Claude Code | `~/.claude
|
|
131
|
+
| Claude Code | `~/.claude.json` |
|
|
132
132
|
| Cursor | `~/.cursor/mcp.json` |
|
|
133
133
|
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
134
134
|
| VS Code | `~/.vscode/mcp.json` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.240",
|
|
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
|
@@ -178,8 +178,11 @@ const CLIENTS = [
|
|
|
178
178
|
{
|
|
179
179
|
id: 'claude-code',
|
|
180
180
|
name: 'Claude Code',
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
// Claude Code reads MCP servers from ~/.claude.json (user-scope top-level
|
|
182
|
+
// mcpServers), not ~/.claude/settings.json. Writing settings.json never
|
|
183
|
+
// actually configured Claude Code.
|
|
184
|
+
cfgPath: path.join(HOME, '.claude.json'),
|
|
185
|
+
detect: () => fs.existsSync(path.join(HOME, '.claude')) || fs.existsSync(path.join(HOME, '.claude.json')) || _cmdExists('claude'),
|
|
183
186
|
},
|
|
184
187
|
]
|
|
185
188
|
|