vesper-wizard 2.3.3 → 2.3.5

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 (2) hide show
  1. package/package.json +1 -1
  2. package/wizard.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vesper-wizard",
3
- "version": "2.3.3",
3
+ "version": "2.3.5",
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
  "vesper-wizard": "wizard.js"
package/wizard.js CHANGED
@@ -386,7 +386,7 @@ function getAllAgentConfigs() {
386
386
 
387
387
  function installMcpToAgent(agent) {
388
388
  const npxCmd = IS_WIN ? 'npx.cmd' : 'npx';
389
- const serverEntry = { command: npxCmd, args: ['-y', '@vespermcp/mcp-server@latest'] };
389
+ const serverEntry = { command: npxCmd, args: ['-y', '-p', '@vespermcp/mcp-server@latest', 'vespermcp'] };
390
390
 
391
391
  try {
392
392
  if (agent.format === 'toml') {