@vespermcp/mcp-server 1.2.13 → 1.2.14

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/build/index.js +10 -10
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -1841,8 +1841,8 @@ async function main() {
1841
1841
  await runDownloadCli(args);
1842
1842
  return;
1843
1843
  }
1844
- // If run in setup mode OR in a terminal without args (human call), show setup wizard
1845
- if (isSetup || (process.stdin.isTTY && args.length === 0)) {
1844
+ // If run in explicit setup mode, show setup wizard (do not auto-run on server startup)
1845
+ if (isSetup) {
1846
1846
  await runSetupWizard(isSilent);
1847
1847
  return;
1848
1848
  }
@@ -1854,7 +1854,7 @@ async function main() {
1854
1854
  await server.connect(transport);
1855
1855
  console.error("Vesper MCP server running on stdio");
1856
1856
  console.error("Tip: To configure Vesper for your IDE, run: npx @vespermcp/mcp-server --setup");
1857
- console.log("[Vesper] Main loop finished");
1857
+ console.error("[Vesper] Main loop finished");
1858
1858
  }
1859
1859
  async function runConfigCli(args) {
1860
1860
  const isKeys = args.includes("keys");
@@ -2163,21 +2163,21 @@ async function runFuseCli(args) {
2163
2163
  async function runSetupWizard(silent = false) {
2164
2164
  const configManager = new ConfigManager();
2165
2165
  if (!silent) {
2166
- console.log(`\nVesper MCP - Universal Setup`);
2167
- console.log(`================================`);
2168
- console.log(`Installing to all detected coding agents...\n`);
2166
+ console.error(`\nVesper MCP - Universal Setup`);
2167
+ console.error(`================================`);
2168
+ console.error(`Installing to all detected coding agents...\n`);
2169
2169
  }
2170
2170
  const result = await runWithSpinner("Installing to detected coding agents", () => configManager.installToAll());
2171
2171
  if (result.success.length === 0 && result.failed.length === 0) {
2172
2172
  if (!silent) {
2173
- console.log("\nNo supported agents detected.");
2174
- console.log("Supported agents: Claude Code, Claude Desktop, Cursor, VS Code, Codex, Antigravity");
2175
- console.log("\nMake sure at least one is installed, then try again.");
2173
+ console.error("\nNo supported agents detected.");
2174
+ console.error("Supported agents: Claude Code, Claude Desktop, Cursor, VS Code, Codex, Antigravity");
2175
+ console.error("\nMake sure at least one is installed, then try again.");
2176
2176
  }
2177
2177
  return;
2178
2178
  }
2179
2179
  if (!silent) {
2180
- console.log("Setup complete! Please RESTART your IDE(s) to apply changes.");
2180
+ console.error("Setup complete! Please RESTART your IDE(s) to apply changes.");
2181
2181
  }
2182
2182
  }
2183
2183
  main().catch((error) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vespermcp/mcp-server",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
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",