@loxtep/customer-mcp-server 1.0.3 → 1.0.4

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/README.md CHANGED
@@ -93,8 +93,8 @@ All three commands start the stdio MCP server. Use the one that fits your setup.
93
93
 
94
94
  ## Environment Variables (Optional)
95
95
 
96
- - `LOXTEP_ENV` or `NODE_ENV` – When unset, **production** URLs are used. Set to `dev` or `development` to use **dev** app and API (`devapp.loxtep.io`, `apidev.loxtep.io`). Explicit URL vars below override this.
97
- - `LOXTEP_APP_URL` – App base URL for login (overrides dev/prod default; prod `https://app.loxtep.io`, dev `https://devapp.loxtep.io`)
96
+ - `LOXTEP_ENV` or `NODE_ENV` – When unset, **production** URLs are used. Set to `dev` or `development` to use **dev** app and API (`appdev.loxtep.io`, `apidev.loxtep.io`). Explicit URL vars below override this.
97
+ - `LOXTEP_APP_URL` – App base URL for login (overrides dev/prod default; prod `https://app.loxtep.io`, dev `https://appdev.loxtep.io`)
98
98
  - `LOXTEP_API_BASE_URL` – API endpoint (overrides dev/prod default; prod `https://api.loxtep.io`, dev `https://apidev.loxtep.io`)
99
99
  - `LOXTEP_TOKEN_FILE` – Custom path to token file (default:
100
100
  `~/.loxtep/customer-mcp.json`)
package/dist/env.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * - Explicit LOXTEP_APP_URL / LOXTEP_API_BASE_URL win.
4
4
  * - Else dev vs prod from LOXTEP_ENV or NODE_ENV (dev → devapp/apidev, prod → app/api).
5
5
  */
6
- const DEV_APP_URL = 'https://devapp.loxtep.io';
6
+ const DEV_APP_URL = 'https://appdev.loxtep.io';
7
7
  const DEV_API_URL = 'https://apidev.loxtep.io';
8
8
  const PROD_APP_URL = 'https://app.loxtep.io';
9
9
  const PROD_API_URL = 'https://api.loxtep.io';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loxtep/customer-mcp-server",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Customer MCP proxy: login via app UI, stdio server that forwards tool calls to Loxtep API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",