@mcp-abap-adt/configurator 0.0.8 → 0.0.9
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/bin/mcp-conf.js +13 -0
- package/docs/CLIENT_INSTALLERS.md +2 -1
- package/package.json +1 -1
package/bin/mcp-conf.js
CHANGED
|
@@ -499,6 +499,19 @@ function getClinePath(platformValue, homeDir, appDataDir) {
|
|
|
499
499
|
"cline_mcp_settings.json",
|
|
500
500
|
);
|
|
501
501
|
}
|
|
502
|
+
if (platformValue === "darwin") {
|
|
503
|
+
return path.join(
|
|
504
|
+
homeDir,
|
|
505
|
+
"Library",
|
|
506
|
+
"Application Support",
|
|
507
|
+
"Code",
|
|
508
|
+
"User",
|
|
509
|
+
"globalStorage",
|
|
510
|
+
"saoudrizwan.claude-dev",
|
|
511
|
+
"settings",
|
|
512
|
+
"cline_mcp_settings.json",
|
|
513
|
+
);
|
|
514
|
+
}
|
|
502
515
|
return path.join(
|
|
503
516
|
homeDir,
|
|
504
517
|
".config",
|
|
@@ -130,7 +130,8 @@ Paths are client-specific and OS-dependent. The installer writes config files in
|
|
|
130
130
|
|
|
131
131
|
Global (default) locations:
|
|
132
132
|
- **Cline**:
|
|
133
|
-
- Linux
|
|
133
|
+
- Linux: `~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
134
|
+
- macOS: `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
134
135
|
- Windows: `%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json`
|
|
135
136
|
- **Codex**:
|
|
136
137
|
- Linux/macOS: `~/.codex/config.toml`
|