@vespermcp/mcp-server 1.0.1 → 1.0.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 (2) hide show
  1. package/README.md +7 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,17 +31,15 @@ Vesper is a Model Context Protocol (MCP) server that helps you find, analyze, an
31
31
 
32
32
  ## 📦 Installation
33
33
 
34
- ### Option A: Install via Git (Recommended)
35
- Install directly from the repository without waiting for npm publishing:
34
+ ### Install Globally (Recommended)
35
+
36
36
  ```bash
37
- npm install -g git+https://github.com/vesper/mcp-server.git
37
+ npm install -g @vespermcp/mcp-server
38
38
  ```
39
39
 
40
- ### Option B: Install Globally from Source
41
- 1. Clone the repository
42
- 2. Run install:
40
+ ### Option B: Install via Git
43
41
  ```bash
44
- npm install -g .
42
+ npm install -g git+https://github.com/vespermcp/mcp-server.git
45
43
  ```
46
44
 
47
45
  The postinstall script will automatically:
@@ -67,7 +65,7 @@ Add Vesper to your MCP settings file:
67
65
  "vesper": {
68
66
  "command": "node",
69
67
  "args": [
70
- "vesper"
68
+ "/usr/local/lib/node_modules/@vespermcp/mcp-server/build/index.js"
71
69
  ],
72
70
  "env": {
73
71
  "KAGGLE_USERNAME": "your-username",
@@ -79,7 +77,7 @@ Add Vesper to your MCP settings file:
79
77
  }
80
78
  ```
81
79
 
82
- > **Note**: Update the path in `args` if `vesper` is not in your PATH. You can use the full path: `/usr/local/lib/node_modules/vesper-mcp-server/build/index.js` (use `npm root -g` to check location).
80
+ > **Note**: Update the path in `args` if `vesper` is not in your PATH. You can use the full path: `/usr/local/lib/node_modules/@vespermcp/mcp-server/build/index.js` (use `npm root -g` to check location).
83
81
 
84
82
  ### Environment Variables (Optional)
85
83
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vespermcp/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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",