local-mcp 3.0.237 → 3.0.239

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/setup.js +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-mcp",
3
- "version": "3.0.237",
3
+ "version": "3.0.239",
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
- cfgPath: path.join(HOME, '.claude', 'settings.json'),
182
- detect: () => fs.existsSync(path.join(HOME, '.claude')) || _cmdExists('claude'),
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