@vibesharingapp/mcp-server 0.6.0 → 0.6.1
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 +8 -4
- package/dist/index.js +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,11 +73,13 @@ Sign up at [vibesharing.app](https://vibesharing.app), then go to [Account Setti
|
|
|
73
73
|
### 2. Configure Claude Code
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
|
-
claude mcp add vibesharing \
|
|
77
|
-
-e VIBESHARING_TOKEN=
|
|
76
|
+
claude mcp add vibesharing -s user \
|
|
77
|
+
-e VIBESHARING_TOKEN=vs_PASTE_YOUR_TOKEN \
|
|
78
78
|
-- npx -y @vibesharingapp/mcp-server@latest
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
+
> **Important:** Replace `vs_PASTE_YOUR_TOKEN` with your actual token. Use `-s user` so it works in all projects. Then restart Claude Code.
|
|
82
|
+
|
|
81
83
|
Or add to your Claude Code settings manually:
|
|
82
84
|
|
|
83
85
|
```json
|
|
@@ -199,7 +201,9 @@ VibeSharing isn't just another tool to check. It's infrastructure for teams buil
|
|
|
199
201
|
**Stop building in isolation. Start shipping with your team.**
|
|
200
202
|
|
|
201
203
|
```bash
|
|
202
|
-
claude mcp add vibesharing \
|
|
203
|
-
-e VIBESHARING_TOKEN=
|
|
204
|
+
claude mcp add vibesharing -s user \
|
|
205
|
+
-e VIBESHARING_TOKEN=vs_PASTE_YOUR_TOKEN \
|
|
204
206
|
-- npx -y @vibesharingapp/mcp-server@latest
|
|
205
207
|
```
|
|
208
|
+
|
|
209
|
+
> **Important:** Replace `vs_PASTE_YOUR_TOKEN` with your actual token. Use `-s user` so it works in all projects. Then restart Claude Code.
|
package/dist/index.js
CHANGED
|
@@ -303,13 +303,25 @@ const VIBESHARING_TOKEN = process.env.VIBESHARING_TOKEN;
|
|
|
303
303
|
if (!VIBESHARING_TOKEN) {
|
|
304
304
|
console.error("Error: VIBESHARING_TOKEN environment variable is required");
|
|
305
305
|
console.error("Get your deploy token from VibeSharing → Account Settings");
|
|
306
|
+
console.error("");
|
|
307
|
+
console.error("Quick setup:");
|
|
308
|
+
console.error(" claude mcp add vibesharing -s user -e VIBESHARING_TOKEN=vs_YOUR_TOKEN -- npx -y @vibesharingapp/mcp-server@latest");
|
|
309
|
+
process.exit(1);
|
|
310
|
+
}
|
|
311
|
+
if (VIBESHARING_TOKEN === "vs_your_token_here" || VIBESHARING_TOKEN.length < 10) {
|
|
312
|
+
console.error("Error: VIBESHARING_TOKEN is still the placeholder value");
|
|
313
|
+
console.error("Replace it with your actual deploy token from VibeSharing → Account Settings");
|
|
314
|
+
console.error("");
|
|
315
|
+
console.error("Fix:");
|
|
316
|
+
console.error(" claude mcp remove vibesharing");
|
|
317
|
+
console.error(" claude mcp add vibesharing -s user -e VIBESHARING_TOKEN=vs_YOUR_TOKEN -- npx -y @vibesharingapp/mcp-server@latest");
|
|
306
318
|
process.exit(1);
|
|
307
319
|
}
|
|
308
320
|
const client = new VibesharingClient(VIBESHARING_URL, VIBESHARING_TOKEN);
|
|
309
321
|
// Create MCP server
|
|
310
322
|
const server = new index_js_1.Server({
|
|
311
323
|
name: "vibesharing",
|
|
312
|
-
version: "0.6.
|
|
324
|
+
version: "0.6.1",
|
|
313
325
|
}, {
|
|
314
326
|
capabilities: {
|
|
315
327
|
tools: {},
|
package/package.json
CHANGED