@vespermcp/setup 3.1.1 → 3.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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/wizard.js +2 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Interactive setup for the Vesper MCP stack: link your [getvesper.dev](https://getvesper.dev) account, store your API key locally, and auto-write MCP config for Cursor, Claude, VS Code, Codex, and Gemini CLI.
4
4
 
5
- The wizard also asks whether you want **web URL extraction** (`vesper.extract_web`). If you opt in and have **Docker**, it runs **`docker pull`** / **`docker run`** for the official [Crawl4AI](https://hub.docker.com/r/unclecode/crawl4ai) image and sets `VESPER_CRAWL4AI_URL` in your MCP env — no separate web search required.
5
+ The wizard also asks whether you want **web URL extraction** (`vesper_extract_web`). If you opt in and have **Docker**, it runs **`docker pull`** / **`docker run`** for the official [Crawl4AI](https://hub.docker.com/r/unclecode/crawl4ai) image and sets `VESPER_CRAWL4AI_URL` in your MCP env — no separate web search required.
6
6
 
7
7
  ## Run
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vespermcp/setup",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Zero-friction setup wizard for Vesper — local MCP server, unified dataset API, and agent auto-config in 60 seconds",
5
5
  "bin": {
6
6
  "setup": "wizard.js"
package/wizard.js CHANGED
@@ -728,7 +728,7 @@ async function main() {
728
728
  // ─── Step 6: Web extraction (Crawl4AI + Docker) ─────────────
729
729
  console.log(`\n ${dim('[')}${cyan('6/7')}${dim(']')} Web extraction (optional)`);
730
730
  console.log(
731
- ` ${dim('Tools like')} ${cyan('vesper.extract_web')} ${dim('use Crawl4AI. The easiest way is Docker on your machine (no extra API keys).')}\n`,
731
+ ` ${dim('Tools like')} ${cyan('vesper_extract_web')} ${dim('use Crawl4AI. The easiest way is Docker on your machine (no extra API keys).')}\n`,
732
732
  );
733
733
 
734
734
  const wantWebExtraction = await askYesNo(`${cyan('→')} Enable web URL extraction (Crawl4AI + Docker)?`);
@@ -777,7 +777,7 @@ ${dim('════════════════════════
777
777
  ${dim('1.')} ${isCloud ? 'Linked to your Vesper cloud account' : 'Generated a local API key (never leaves your machine)'}
778
778
  ${dim('2.')} Initialized local credentials vault
779
779
  ${dim('3.')} Auto-configured MCP for ${configuredAgents.length > 0 ? configuredAgents.join(', ') : 'detected agents'}
780
- ${dim('4.')} Optional: Crawl4AI for web extraction (${dim('vesper.extract_web')}) — Docker step if you chose it
780
+ ${dim('4.')} Optional: Crawl4AI for web extraction (${dim('vesper_extract_web')}) — Docker step if you chose it
781
781
  ${dim('5.')} Vesper server ready on stdio transport
782
782
 
783
783
  ${dim('─────────────────────────────────────────────────')}