local-mcp 3.0.222 → 3.0.223
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/package.json +1 -1
- package/setup.js +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.223",
|
|
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
|
@@ -611,6 +611,15 @@ async function runSetup(opts = {}) {
|
|
|
611
611
|
clientsNotFound: failed.map(f => f.name || f),
|
|
612
612
|
})
|
|
613
613
|
|
|
614
|
+
if (configured.length > 0) {
|
|
615
|
+
try {
|
|
616
|
+
const r = _safeReadConfig(cfgFile)
|
|
617
|
+
const cfg = r.data || {}
|
|
618
|
+
cfg.activation_checklist_pending = true
|
|
619
|
+
_atomicWriteConfig(cfgFile, cfg)
|
|
620
|
+
} catch { /* non-fatal */ }
|
|
621
|
+
}
|
|
622
|
+
|
|
614
623
|
const hasCursor = configured.includes('Cursor')
|
|
615
624
|
|
|
616
625
|
console.log('\n──────────────────────────────────────')
|