@vibesharingapp/mcp-server 0.4.1 → 0.4.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.
- package/README.md +56 -35
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,21 +22,26 @@ Until now.
|
|
|
22
22
|
VibeSharing's MCP server connects Claude Code directly to your team's prototype hub. Every prototype you build becomes instantly shareable, trackable, and open for feedback.
|
|
23
23
|
|
|
24
24
|
```
|
|
25
|
-
You: "
|
|
25
|
+
You: "Post this prototype to VibeSharing"
|
|
26
26
|
|
|
27
|
-
Claude:
|
|
28
|
-
|
|
27
|
+
Claude: I found these collections in your org:
|
|
28
|
+
1. All Hero Use Cases
|
|
29
|
+
2. Compliance Hub
|
|
30
|
+
3. Internal Tools
|
|
31
|
+
|
|
32
|
+
Which collection should this go in? And do you want a custom URL
|
|
33
|
+
like erg-v3-teams.vercel.app?
|
|
29
34
|
```
|
|
30
35
|
|
|
31
|
-
|
|
36
|
+
No guessing. No duplicates. Just a quick confirmation and your prototype is live.
|
|
32
37
|
|
|
33
38
|
## What You Can Do
|
|
34
39
|
|
|
35
40
|
### Ship prototypes without leaving your terminal
|
|
36
41
|
```
|
|
37
|
-
"Deploy this to
|
|
42
|
+
"Deploy this to VibeSharing in the Hero Use Cases collection as erg-v3-teams"
|
|
38
43
|
```
|
|
39
|
-
Claude
|
|
44
|
+
Claude confirms the collection, names the deployment, and handles everything—GitHub repo, Vercel deploy, team registration—in one conversation.
|
|
40
45
|
|
|
41
46
|
### Check what your team thinks
|
|
42
47
|
```
|
|
@@ -53,32 +58,34 @@ Your project context persists on VibeSharing, so any team member (or AI session)
|
|
|
53
58
|
### See all your work in one place
|
|
54
59
|
```
|
|
55
60
|
"List my prototypes"
|
|
61
|
+
"Search collections for hero"
|
|
56
62
|
```
|
|
57
|
-
Every prototype you've registered, with links and recent activity.
|
|
63
|
+
Every prototype you've registered, with links and recent activity. Fuzzy search included.
|
|
58
64
|
|
|
59
65
|
## Quick Start
|
|
60
66
|
|
|
61
|
-
### 1.
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
npm install -g @vibesharingapp/mcp-server
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
### 2. Get Your Token & Connect GitHub
|
|
67
|
+
### 1. Get Your Token & Connect GitHub
|
|
68
68
|
|
|
69
69
|
Sign up at [vibesharing.app](https://vibesharing.app), then go to [Account Settings](https://vibesharing.app/dashboard/account) to:
|
|
70
70
|
- **Connect your GitHub account** — required for Push to Deploy (gives you automatic push access to prototype repos)
|
|
71
71
|
- **Copy your deploy token** — needed for the MCP server config below
|
|
72
72
|
|
|
73
|
-
###
|
|
73
|
+
### 2. Configure Claude Code
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
```bash
|
|
76
|
+
claude mcp add vibesharing \
|
|
77
|
+
-e VIBESHARING_TOKEN=vs_your_token_here \
|
|
78
|
+
-- npx -y @vibesharingapp/mcp-server@latest
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Or add to your Claude Code settings manually:
|
|
76
82
|
|
|
77
83
|
```json
|
|
78
84
|
{
|
|
79
85
|
"mcpServers": {
|
|
80
86
|
"vibesharing": {
|
|
81
|
-
"command": "
|
|
87
|
+
"command": "npx",
|
|
88
|
+
"args": ["-y", "@vibesharingapp/mcp-server@latest"],
|
|
82
89
|
"env": {
|
|
83
90
|
"VIBESHARING_TOKEN": "vs_your_token_here"
|
|
84
91
|
}
|
|
@@ -87,7 +94,9 @@ Add to your Claude Code settings:
|
|
|
87
94
|
}
|
|
88
95
|
```
|
|
89
96
|
|
|
90
|
-
|
|
97
|
+
Using `@latest` ensures you always get new features and fixes automatically.
|
|
98
|
+
|
|
99
|
+
### 3. Start Building
|
|
91
100
|
|
|
92
101
|
That's it. Ask Claude to register prototypes, check feedback, or sync context. It just works.
|
|
93
102
|
|
|
@@ -106,11 +115,21 @@ See the full picture of your team's prototyping velocity. Guide feedback with cu
|
|
|
106
115
|
|
|
107
116
|
| Tool | Description |
|
|
108
117
|
|------|-------------|
|
|
109
|
-
| `
|
|
118
|
+
| `resolve_target` | **Start here.** Fuzzy-matches collection/project names and confirms where to deploy before proceeding. |
|
|
119
|
+
| `import_repo` | Import a GitHub repo into VibeSharing with a named Vercel deployment |
|
|
120
|
+
| `deploy_files` | Deploy multi-file projects to VibeSharing with named deployments |
|
|
121
|
+
| `deploy_prototype` | Deploy a single code file directly |
|
|
110
122
|
| `register_prototype` | Register an already-deployed prototype with name, description, and URL |
|
|
111
|
-
| `list_prototypes` | List all prototypes in your organization |
|
|
123
|
+
| `list_prototypes` | List/search all prototypes in your organization |
|
|
124
|
+
| `list_collections` | List/search all collections |
|
|
112
125
|
| `get_feedback` | Get feedback and comments for any prototype |
|
|
113
126
|
| `sync_context` | Push CLAUDE.md, AGENTS.md, or project notes to VibeSharing |
|
|
127
|
+
| `create_collection` | Create a new collection |
|
|
128
|
+
| `upload_source` | Upload source code to an existing prototype |
|
|
129
|
+
| `add_context_link` | Attach reference links (Figma, PRDs, docs) to collections or projects |
|
|
130
|
+
| `list_context_links` | List reference links on a collection or project |
|
|
131
|
+
| `remove_context_link` | Remove a reference link |
|
|
132
|
+
| `verify_token` | Check that your deploy token is valid |
|
|
114
133
|
|
|
115
134
|
## Environment Variables
|
|
116
135
|
|
|
@@ -121,25 +140,23 @@ See the full picture of your team's prototyping velocity. Guide feedback with cu
|
|
|
121
140
|
|
|
122
141
|
## Examples
|
|
123
142
|
|
|
124
|
-
### Deploy
|
|
143
|
+
### Deploy with a named URL
|
|
125
144
|
```
|
|
126
|
-
You: "Deploy this to VibeSharing as
|
|
145
|
+
You: "Deploy this to VibeSharing as erg-v3-teams in the Hero Use Cases collection"
|
|
127
146
|
|
|
128
|
-
Claude: Deployed
|
|
147
|
+
Claude: Deployed!
|
|
129
148
|
|
|
130
|
-
Live URL: https://
|
|
149
|
+
Live URL: https://erg-v3-teams.vercel.app
|
|
131
150
|
VibeSharing: https://vibesharing.app/dashboard/projects/xyz789
|
|
132
151
|
|
|
133
152
|
Your team can now view the prototype and leave feedback.
|
|
134
153
|
```
|
|
135
154
|
|
|
136
|
-
###
|
|
155
|
+
### Fuzzy search for collections
|
|
137
156
|
```
|
|
138
|
-
You: "
|
|
139
|
-
as 'Checkout Flow v2' and mention it simplifies the payment step"
|
|
157
|
+
You: "Put this in the hero collection"
|
|
140
158
|
|
|
141
|
-
Claude:
|
|
142
|
-
https://vibesharing.app/dashboard/projects/xyz789
|
|
159
|
+
Claude: I found "All Hero Use Cases" — is that the right collection?
|
|
143
160
|
```
|
|
144
161
|
|
|
145
162
|
### Get feedback before your next session
|
|
@@ -154,7 +171,7 @@ Claude: 3 new comments on Dashboard Redesign:
|
|
|
154
171
|
|
|
155
172
|
### Keep your AI context in sync
|
|
156
173
|
```
|
|
157
|
-
You: "Sync my CLAUDE.md
|
|
174
|
+
You: "Sync my CLAUDE.md to the Dashboard project on VibeSharing"
|
|
158
175
|
|
|
159
176
|
Claude: Context synced! Your team can now see your project notes at:
|
|
160
177
|
https://vibesharing.app/dashboard/projects/abc123
|
|
@@ -164,21 +181,25 @@ Claude: Context synced! Your team can now see your project notes at:
|
|
|
164
181
|
|
|
165
182
|
VibeSharing isn't just another tool to check. It's infrastructure for teams building with AI:
|
|
166
183
|
|
|
184
|
+
- **Smart deploy targeting** — fuzzy-matches collections and projects so you don't need exact IDs
|
|
185
|
+
- **Named deployments** — deterministic URLs like `erg-v3-teams.vercel.app` instead of random hashes
|
|
167
186
|
- **Context file sync** (CLAUDE.md, AGENTS.md) keeps context alive across sessions and team members
|
|
168
187
|
- **Guided feedback topics** help stakeholders give useful input
|
|
169
188
|
- **Email notifications** when prototypes update or get feedback
|
|
170
|
-
- **Works with any deploy target**
|
|
189
|
+
- **Works with any deploy target** — Vercel, Netlify, Replit, Lovable, v0, or paste any URL
|
|
171
190
|
|
|
172
191
|
## Learn More
|
|
173
192
|
|
|
174
|
-
- [VibeSharing](https://vibesharing.app)
|
|
175
|
-
- [Documentation](https://vibesharing.app/get-started)
|
|
176
|
-
- [GitHub](https://github.com/erova/vibesharing)
|
|
193
|
+
- [VibeSharing](https://vibesharing.app) — Sign up free
|
|
194
|
+
- [Documentation](https://vibesharing.app/get-started) — Full setup guide
|
|
195
|
+
- [GitHub](https://github.com/erova/vibesharing) — Source code
|
|
177
196
|
|
|
178
197
|
---
|
|
179
198
|
|
|
180
199
|
**Stop building in isolation. Start shipping with your team.**
|
|
181
200
|
|
|
182
201
|
```bash
|
|
183
|
-
|
|
202
|
+
claude mcp add vibesharing \
|
|
203
|
+
-e VIBESHARING_TOKEN=vs_your_token_here \
|
|
204
|
+
-- npx -y @vibesharingapp/mcp-server@latest
|
|
184
205
|
```
|
package/dist/index.js
CHANGED
|
@@ -178,7 +178,7 @@ function fuzzyMatch(query, items, getName, threshold = 0.3) {
|
|
|
178
178
|
.sort((a, b) => b.score - a.score);
|
|
179
179
|
}
|
|
180
180
|
// ---- Version tracking & What's New ----
|
|
181
|
-
const CURRENT_VERSION = "0.4.
|
|
181
|
+
const CURRENT_VERSION = "0.4.2";
|
|
182
182
|
const WHATS_NEW = {
|
|
183
183
|
"0.4.0": [
|
|
184
184
|
"🆕 VibeSharing MCP v0.4.0 — What's New:",
|
package/package.json
CHANGED