zephex 2.1.1 → 2.1.2

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.
Files changed (2) hide show
  1. package/dist/cli.js +4 -7
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -1448,7 +1448,7 @@ function getCliVersion() {
1448
1448
  CACHED_CLI_VERSION = "unknown";
1449
1449
  return CACHED_CLI_VERSION;
1450
1450
  }
1451
- var DEFAULT_AUTH0_CLI_CLIENT_ID = process.env.AUTH0_CLI_CLIENT_ID ?? "AUTH0_CLI_CLIENT_ID_NOT_SET";
1451
+ var DEFAULT_AUTH0_CLI_CLIENT_ID = process.env.AUTH0_CLI_CLIENT_ID ?? "2JrCMEKyOdY1YDZxInqTamSGNSCX9DaS";
1452
1452
  var DEFAULT_AUTH0_DOMAIN = "zephex.us.auth0.com";
1453
1453
  var DEFAULT_AUTH0_AUDIENCE = "https://zephex.dev/mcp";
1454
1454
  var ZEPHEX_API_BASE = "https://zephex.dev";
@@ -2161,14 +2161,11 @@ async function runSetup(argv) {
2161
2161
  return;
2162
2162
  }
2163
2163
  const resolvedClientId = process.env["AUTH0_CLI_CLIENT_ID"] || DEFAULT_AUTH0_CLI_CLIENT_ID;
2164
- if (!resolvedClientId || resolvedClientId === "AUTH0_CLI_CLIENT_ID_NOT_SET") {
2164
+ if (!resolvedClientId) {
2165
2165
  process.stderr.write(`
2166
2166
  Error: AUTH0_CLI_CLIENT_ID is not configured.
2167
- ` + "Run `node scripts/create-cli-auth0-app.mjs` to create the Auth0 Native\n" + `application, then set AUTH0_CLI_CLIENT_ID in your environment.
2168
- ` + `Alternatively create the app manually in the Auth0 dashboard:
2169
- ` + ` • Application type: Native
2170
- ` + ` • Allowed Callback URLs: http://localhost:52748/callback, http://localhost:52749/callback, http://localhost:52750/callback
2171
- ` + ` • Token Endpoint Auth Method: None
2167
+ ` + `This should not happen with the published package. Report this at:
2168
+ ` + ` https://github.com/zephex/mcp-proxy/issues
2172
2169
 
2173
2170
  `);
2174
2171
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zephex",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Zephex MCP — codebase intelligence tools for AI coding agents. stdio server that runs locally, reads your project files, and proxies AI calls to the Zephex backend.",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",