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.
- package/mcp/stdio-wrapper.js +11 -1
- package/package.json +1 -1
package/mcp/stdio-wrapper.js
CHANGED
|
@@ -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('
|
|
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
|
|