vesper-wizard 2.1.1 → 2.1.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/package.json CHANGED
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "vesper-wizard",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "AI-powered dataset discovery, quality analysis, and preparation MCP server with multimodal support (text, image, audio, video)",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
7
7
  "bin": {
8
- "mcp-server": "./build/index.js",
9
- "vespermcp": "./build/index.js",
10
- "vesper-wizard": "scripts/wizard.cjs"
8
+ "vesper-wizard": "wizard.cjs"
11
9
  },
12
10
  "files": [
13
11
  "build/**/*",
14
12
  "src/python/**/*",
13
+ "wizard.cjs",
15
14
  "scripts/**/*",
16
15
  "README.md",
17
16
  "LICENSE",
@@ -60,7 +59,7 @@
60
59
  "license": "MIT",
61
60
  "repository": {
62
61
  "type": "git",
63
- "url": "https://github.com/vesper/mcp-server"
62
+ "url": "git+https://github.com/vesper/mcp-server.git"
64
63
  },
65
64
  "engines": {
66
65
  "node": ">=18.0.0",
@@ -236,7 +236,7 @@ async function deviceAuthFlow() {
236
236
  console.log(` ${red('✗')} ${red('Could not reach any Vesper auth endpoint.')}`);
237
237
  console.log(` ${dim('Tried:')} ${dim((VESPER_API_URL ? [VESPER_API_URL] : DEFAULT_VESPER_API_CANDIDATES).join(', '))}`);
238
238
  console.log(` ${dim('If your landing app is running locally, start it on http://localhost:3000 or set VESPER_API_URL.')}`);
239
- console.log(` ${dim('Falling back to local-only mode.\n')}`);
239
+ console.log(` ${dim('Falling back to manual key entry.\n')}`);
240
240
  return null;
241
241
  }
242
242
 
@@ -245,7 +245,7 @@ async function deviceAuthFlow() {
245
245
  console.log(` ${dim('Endpoint:')} ${dim(resolvedApiBaseUrl.baseUrl)}`);
246
246
  console.log(` ${dim('Reason:')} ${dim(resolvedApiBaseUrl.message || 'Apply Supabase migrations first.')}`);
247
247
  console.log(` ${dim('Run the SQL in supabase/migrations/001_device_auth.sql and 002_rate_limits.sql, then retry.')}`);
248
- console.log(` ${dim('Falling back to local-only mode.\n')}`);
248
+ console.log(` ${dim('Falling back to manual key entry.\n')}`);
249
249
  return null;
250
250
  }
251
251
 
@@ -259,7 +259,7 @@ async function deviceAuthFlow() {
259
259
  } catch (err) {
260
260
  console.log(` ${red('✗')}`);
261
261
  console.log(` ${red('Could not reach Vesper API at')} ${dim(resolvedApiBaseUrl.baseUrl)}`);
262
- console.log(` ${dim('Falling back to local-only mode.\n')}`);
262
+ console.log(` ${dim('Falling back to manual key entry.\n')}`);
263
263
  return null;
264
264
  }
265
265
 
package/scripts/wizard.js CHANGED
@@ -236,7 +236,7 @@ async function deviceAuthFlow() {
236
236
  console.log(` ${red('✗')} ${red('Could not reach any Vesper auth endpoint.')}`);
237
237
  console.log(` ${dim('Tried:')} ${dim((VESPER_API_URL ? [VESPER_API_URL] : DEFAULT_VESPER_API_CANDIDATES).join(', '))}`);
238
238
  console.log(` ${dim('If your landing app is running locally, start it on http://localhost:3000 or set VESPER_API_URL.')}`);
239
- console.log(` ${dim('Falling back to local-only mode.\n')}`);
239
+ console.log(` ${dim('Falling back to manual key entry.\n')}`);
240
240
  return null;
241
241
  }
242
242
 
@@ -245,7 +245,7 @@ async function deviceAuthFlow() {
245
245
  console.log(` ${dim('Endpoint:')} ${dim(resolvedApiBaseUrl.baseUrl)}`);
246
246
  console.log(` ${dim('Reason:')} ${dim(resolvedApiBaseUrl.message || 'Apply Supabase migrations first.')}`);
247
247
  console.log(` ${dim('Run the SQL in supabase/migrations/001_device_auth.sql and 002_rate_limits.sql, then retry.')}`);
248
- console.log(` ${dim('Falling back to local-only mode.\n')}`);
248
+ console.log(` ${dim('Falling back to manual key entry.\n')}`);
249
249
  return null;
250
250
  }
251
251
 
@@ -259,7 +259,7 @@ async function deviceAuthFlow() {
259
259
  } catch (err) {
260
260
  console.log(` ${red('✗')}`);
261
261
  console.log(` ${red('Could not reach Vesper API at')} ${dim(resolvedApiBaseUrl.baseUrl)}`);
262
- console.log(` ${dim('Falling back to local-only mode.\n')}`);
262
+ console.log(` ${dim('Falling back to manual key entry.\n')}`);
263
263
  return null;
264
264
  }
265
265
 
package/wizard.cjs ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('./scripts/wizard.js');