genexus-mcp 1.2.1 → 1.3.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/cli/lib/config.js +3 -1
- package/package.json +1 -1
package/cli/lib/config.js
CHANGED
|
@@ -100,11 +100,13 @@ function patchClientConfig(targetConfigPath) {
|
|
|
100
100
|
const claudeWin = path.join(os.homedir(), 'AppData', 'Roaming', 'Claude', 'claude_desktop_config.json');
|
|
101
101
|
const claudeMac = path.join(os.homedir(), 'Library', 'Application Support', 'Claude', 'claude_desktop_config.json');
|
|
102
102
|
const antigravityCfg = path.join(os.homedir(), '.gemini', 'antigravity', 'mcp_config.json');
|
|
103
|
+
const claudeCodeCfg = path.join(os.homedir(), '.claude.json');
|
|
103
104
|
|
|
104
105
|
const clients = [
|
|
105
106
|
{ path: claudeWin, name: 'Claude Desktop (Windows)' },
|
|
106
107
|
{ path: claudeMac, name: 'Claude Desktop (macOS)' },
|
|
107
|
-
{ path: antigravityCfg, name: 'Antigravity' }
|
|
108
|
+
{ path: antigravityCfg, name: 'Antigravity' },
|
|
109
|
+
{ path: claudeCodeCfg, name: 'Claude Code' }
|
|
108
110
|
];
|
|
109
111
|
|
|
110
112
|
const patched = [];
|