@vespermcp/mcp-server 1.2.15 → 1.2.17

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/README.md CHANGED
@@ -36,7 +36,7 @@ Vesper is a Model Context Protocol (MCP) server that helps you find, analyze, an
36
36
  The fastest way to install Vesper and configure it for **GitHub Copilot Chat** or **Cursor** is to run the automated setup:
37
37
 
38
38
  ```bash
39
- npx -y @vespermcp/mcp-server@latest --setup
39
+ npx -y -p @vespermcp/mcp-server@latest vespermcp --setup
40
40
  ```
41
41
 
42
42
  1. Select **Visual Studio Code (Settings.json)** from the list.
@@ -91,7 +91,7 @@ export class ConfigManager {
91
91
  const isWin = process.platform === "win32";
92
92
  return {
93
93
  command: isWin ? "npx.cmd" : "npx",
94
- args: ["-y", "@vespermcp/mcp-server@latest"],
94
+ args: ["-y", "-p", "@vespermcp/mcp-server@latest", "vespermcp"],
95
95
  };
96
96
  }
97
97
  /**
package/build/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  // --- Dataset ID Normalization ---
2
3
  function normalize_dataset_id(dataset_id) {
3
4
  // Remove kaggle: prefix for storage key
@@ -1924,7 +1925,7 @@ async function main() {
1924
1925
  const transport = new StdioServerTransport();
1925
1926
  await server.connect(transport);
1926
1927
  console.error("Vesper MCP server running on stdio");
1927
- console.error("Tip: To configure Vesper for your IDE, run: npx @vespermcp/mcp-server --setup");
1928
+ console.error("Tip: To configure Vesper for your IDE, run: npx -y -p @vespermcp/mcp-server@latest vespermcp --setup");
1928
1929
  await new Promise((resolve) => {
1929
1930
  const done = () => resolve();
1930
1931
  process.stdin.resume();
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "mcpServers": {
3
3
  "vesper": {
4
- "command": "node",
4
+ "command": "npx",
5
5
  "args": [
6
- "/path/to/global/node_modules/@vesper/mcp-server/build/index.js"
6
+ "-y",
7
+ "-p",
8
+ "@vespermcp/mcp-server@latest",
9
+ "vespermcp"
7
10
  ],
8
11
  "env": {
9
12
  "KAGGLE_USERNAME": "your-kaggle-username",
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@vespermcp/mcp-server",
3
- "version": "1.2.15",
3
+ "version": "1.2.17",
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
8
  "vespermcp": "./build/index.js",
9
+ "mcp-server": "./build/index.js",
9
10
  "@vespermcp/mcp-server": "./build/index.js",
10
11
  "vesper-wizard": "scripts/wizard.js"
11
12
  },
package/scripts/wizard.js CHANGED
@@ -118,7 +118,7 @@ function getAllAgentConfigs() {
118
118
 
119
119
  function installMcpToAgent(agent) {
120
120
  const npxCmd = IS_WIN ? 'npx.cmd' : 'npx';
121
- const serverEntry = { command: npxCmd, args: ['-y', '@vespermcp/mcp-server@latest'] };
121
+ const serverEntry = { command: npxCmd, args: ['-y', '-p', '@vespermcp/mcp-server@latest', 'vespermcp'] };
122
122
 
123
123
  try {
124
124
  if (agent.format === 'toml') {
@@ -156,7 +156,7 @@ function installMcpToAgent(agent) {
156
156
  async function checkServerHealth() {
157
157
  try {
158
158
  // Quick stdio check — spawn server and see if it responds
159
- const result = spawnSync(IS_WIN ? 'npx.cmd' : 'npx', ['-y', '@vespermcp/mcp-server@latest', '--version'], {
159
+ const result = spawnSync(IS_WIN ? 'npx.cmd' : 'npx', ['-y', '-p', '@vespermcp/mcp-server@latest', 'vespermcp', '--version'], {
160
160
  timeout: 10000,
161
161
  encoding: 'utf8',
162
162
  stdio: ['pipe', 'pipe', 'pipe'],
@@ -202,13 +202,13 @@ async function main() {
202
202
  console.log(`\n ${dim('[')}${cyan('4/6')}${dim(']')} Installing Vesper MCP server...`);
203
203
  try {
204
204
  const npmCmd = IS_WIN ? 'npx.cmd' : 'npx';
205
- spawnSync(npmCmd, ['-y', '@vespermcp/mcp-server@latest', '--setup', '--silent'], {
205
+ spawnSync(npmCmd, ['-y', '-p', '@vespermcp/mcp-server@latest', 'vespermcp', '--setup', '--silent'], {
206
206
  stdio: 'inherit',
207
207
  timeout: 120000,
208
208
  });
209
209
  console.log(` ${green('✓')} @vespermcp/mcp-server installed`);
210
210
  } catch {
211
- console.log(` ${yellow('⚠')} Could not auto-install — run manually: npx @vespermcp/mcp-server --setup`);
211
+ console.log(` ${yellow('⚠')} Could not auto-install — run manually: npx -y -p @vespermcp/mcp-server@latest vespermcp --setup`);
212
212
  }
213
213
 
214
214
  // ─── Step 5: Auto-configure all detected IDEs ──────────────