@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 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/macOS: `~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
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`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/configurator",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "MCP client configurator for mcp-abap-adt and mcp-abap-adt-proxy",
5
5
  "license": "MIT",
6
6
  "repository": {