@wisewandtools/mcp-server 2.0.2 → 2.0.3

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
@@ -63,7 +63,7 @@ If you see an error, here's what it means:
63
63
  ❌ FATAL: WISEWAND_API_KEY has invalid format
64
64
  Expected: sk_live_... or sk_test_...
65
65
  ```
66
- **Fix:** Check your API key at [wisewand.ai/dashboard/api-keys](https://wisewand.ai/dashboard/api-keys). It must start with `sk_live_` or `sk_test_`.
66
+ **Fix:** Check your API key at [app.wisewand.ai/api](https://app.wisewand.ai/api). It must start with `sk_live_` or `sk_test_`.
67
67
 
68
68
  ```
69
69
  ❌ FATAL: Cannot connect to Wisewand API
@@ -635,7 +635,7 @@ src/
635
635
  3. **Verify API key format**
636
636
  - Must start with `sk_live_`
637
637
  - No extra spaces or quotes
638
- - Check at [wisewand.ai/dashboard](https://wisewand.ai/dashboard)
638
+ - Check at [app.wisewand.ai/api](https://app.wisewand.ai/api)
639
639
 
640
640
  4. **Check server logs**
641
641
  ```bash
package/dist/index.js CHANGED
@@ -91,14 +91,14 @@ var parseConfig = /* @__PURE__ */ __name(() => {
91
91
  const apiKey = process.env.WISEWAND_API_KEY;
92
92
  if (!apiKey) {
93
93
  console.error("\u274C FATAL: WISEWAND_API_KEY environment variable not set");
94
- console.error(" Get your API key from: https://wisewand.ai/dashboard/api-keys");
94
+ console.error(" Get your API key from: https://app.wisewand.ai/api");
95
95
  process.exit(1);
96
96
  }
97
97
  if (!apiKey.startsWith("sk_live_") && !apiKey.startsWith("sk_test_")) {
98
98
  console.error("\u274C FATAL: WISEWAND_API_KEY has invalid format");
99
99
  console.error(" Expected: sk_live_... or sk_test_...");
100
100
  console.error(` Got: ${apiKey.substring(0, 10)}...`);
101
- console.error(" Get your API key from: https://wisewand.ai/dashboard/api-keys");
101
+ console.error(" Get your API key from: https://app.wisewand.ai/api");
102
102
  process.exit(1);
103
103
  }
104
104
  try {
@@ -6256,7 +6256,7 @@ async function main() {
6256
6256
  console.error("\u274C FATAL: Cannot connect to Wisewand API");
6257
6257
  console.error(` Reason: ${apiHealth.error}`);
6258
6258
  console.error(" Check your WISEWAND_API_KEY and network connection");
6259
- console.error(" Get your API key from: https://wisewand.ai/dashboard/api-keys");
6259
+ console.error(" Get your API key from: https://app.wisewand.ai/api");
6260
6260
  process.exit(1);
6261
6261
  }
6262
6262
  logger.info("\u2713 API connectivity verified");