@sassoftware/sas-score-mcp-serverjs 0.0.3 → 0.0.4-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sassoftware/sas-score-mcp-serverjs",
3
- "version": "0.0.3",
3
+ "version": "0.0.4-0",
4
4
  "description": "A mcp server for SAS Viya",
5
5
  "author": "Deva Kumar <deva.kumar@sas.com>",
6
6
  "license": "Apache-2.0",
@@ -11,8 +11,9 @@ async function getToken(_appContext) {
11
11
  if (_appContext.SAS_CLI_CONFIG != null) {
12
12
  homedir = _appContext.SAS_CLI_CONFIG;
13
13
  }
14
-
14
+ console.error(os.platform());
15
15
  let sep = (os.platform() === 'win32') ? '\\' : '/';
16
+ console.error('Using sep: ' + sep);
16
17
  let credentials = homedir + sep + '.sas' + sep + 'credentials.json';
17
18
  let url = homedir + sep + '.sas' + sep + 'config.json';
18
19
  console.error('[Note] Using credentials file: ' + credentials);