polydev-ai 1.8.72 → 1.8.73

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.
@@ -249,7 +249,17 @@ class StdioMCPWrapper {
249
249
  constructor() {
250
250
  this.userToken = process.env.POLYDEV_USER_TOKEN;
251
251
  if (!this.userToken) {
252
- console.error('POLYDEV_USER_TOKEN environment variable is required');
252
+ console.error('\n╔════════════════════════════════════════════════════════════════╗');
253
+ console.error('║ POLYDEV_USER_TOKEN is not set ║');
254
+ console.error('╠════════════════════════════════════════════════════════════════╣');
255
+ console.error('║ Get your free token at: ║');
256
+ console.error('║ 👉 https://polydev.ai/dashboard/mcp-tokens ║');
257
+ console.error('║ ║');
258
+ console.error('║ Then add to ~/.zshrc or ~/.bashrc: ║');
259
+ console.error('║ export POLYDEV_USER_TOKEN="pd_your_token_here" ║');
260
+ console.error('║ ║');
261
+ console.error('║ Restart your terminal and Claude Code after adding the token ║');
262
+ console.error('╚════════════════════════════════════════════════════════════════╝\n');
253
263
  process.exit(1);
254
264
  }
255
265
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.8.72",
3
+ "version": "1.8.73",
4
4
  "engines": {
5
5
  "node": ">=20.x <=22.x"
6
6
  },