vibo-mcp 1.0.0

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.
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3
+ "name": "vibo-mcp",
4
+ "owner": {
5
+ "name": "Chris Hall",
6
+ "email": "chris.c.hall@gmail.com"
7
+ },
8
+ "metadata": {
9
+ "description": "MCP server for Vibo (vibodj.com) — plan event music, song requests, and playlists via natural language",
10
+ "version": "1.0.0"
11
+ },
12
+ "plugins": [
13
+ {
14
+ "name": "vibo-mcp",
15
+ "displayName": "Vibo",
16
+ "source": "./",
17
+ "description": "MCP server for Vibo — browse events and timelines, add/like song requests, and export to Spotify/Apple Music",
18
+ "version": "1.0.0",
19
+ "author": {
20
+ "name": "Chris Hall"
21
+ },
22
+ "homepage": "https://github.com/chrischall/vibo-mcp",
23
+ "repository": "https://github.com/chrischall/vibo-mcp",
24
+ "license": "MIT",
25
+ "keywords": ["vibo", "vibodj", "wedding", "dj", "music", "mcp"],
26
+ "category": "productivity"
27
+ }
28
+ ]
29
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "vibo-mcp",
3
+ "displayName": "Vibo",
4
+ "version": "1.0.0",
5
+ "description": "MCP server for Vibo (vibodj.com) — plan event music, song requests, and playlists via natural language",
6
+ "author": {
7
+ "name": "Chris Hall",
8
+ "email": "chris.c.hall@gmail.com"
9
+ },
10
+ "homepage": "https://github.com/chrischall/vibo-mcp",
11
+ "repository": "https://github.com/chrischall/vibo-mcp",
12
+ "license": "MIT",
13
+ "keywords": ["vibo", "vibodj", "wedding", "dj", "music", "mcp"],
14
+ "skills": "./SKILL.md",
15
+ "mcp": "./.mcp.json"
16
+ }
package/.mcp.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "mcpServers": {
3
+ "vibo": {
4
+ "command": "node",
5
+ "args": ["${CLAUDE_PLUGIN_ROOT}/dist/index.js"],
6
+ "env": {
7
+ "VIBO_EMAIL": "${VIBO_EMAIL}",
8
+ "VIBO_PASSWORD": "${VIBO_PASSWORD}",
9
+ "VIBO_ACCESS_TOKEN": "${VIBO_ACCESS_TOKEN}",
10
+ "VIBO_REFRESH_TOKEN": "${VIBO_REFRESH_TOKEN}"
11
+ }
12
+ }
13
+ }
14
+ }
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Chris Hall
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,62 @@
1
+ # vibo-mcp
2
+
3
+ MCP server for [Vibo](https://vibodj.com) (vibodj.com) — plan your event music
4
+ as a host/couple. Browse your events and timeline, see and add song requests,
5
+ like songs, manage notifications, and export selections to Spotify/Apple Music,
6
+ all via natural language.
7
+
8
+ > Developed and maintained by AI (Claude Code). Use at your own discretion.
9
+ > Unofficial — not affiliated with Vibo. Works only with your own account/data.
10
+
11
+ ## Install
12
+
13
+ ```json
14
+ {
15
+ "mcpServers": {
16
+ "vibo": {
17
+ "command": "npx",
18
+ "args": ["-y", "vibo-mcp"],
19
+ "env": {
20
+ "VIBO_EMAIL": "you@example.com",
21
+ "VIBO_PASSWORD": "your_password"
22
+ }
23
+ }
24
+ }
25
+ }
26
+ ```
27
+
28
+ ### Authentication
29
+
30
+ Choose one method:
31
+
32
+ | Method | Env vars | When |
33
+ |--------|----------|------|
34
+ | Email + password (recommended) | `VIBO_EMAIL`, `VIBO_PASSWORD` | You sign in to Vibo with an email/password. |
35
+ | Captured token | `VIBO_ACCESS_TOKEN` (+ `VIBO_REFRESH_TOKEN`) | Your account uses Apple/Google/Facebook sign-in (no password). Capture `x-token`/`x-refresh-token` from a signed-in `web.vibodj.com` session. |
36
+
37
+ The server boots without credentials; the config error only surfaces on the
38
+ first tool call.
39
+
40
+ ## How it works
41
+
42
+ Vibo's app talks to a GraphQL API at `https://api.vibodj.com/v2/graphql`,
43
+ authenticating with an `x-token` header obtained from an email/password
44
+ `signIn`. This server reuses that same flow server-side (no browser needed) and
45
+ wraps the host/couple operations as MCP tools. Every mutating tool is
46
+ confirm-gated: without `confirm: true` it returns a dry-run preview and makes no
47
+ network call.
48
+
49
+ See [docs/VIBO-API.md](docs/VIBO-API.md) for the reverse-engineered API notes
50
+ and [SKILL.md](SKILL.md) for the full tool list.
51
+
52
+ ## Development
53
+
54
+ ```bash
55
+ npm install
56
+ npm run build # tsc + esbuild bundle → dist/
57
+ npm test # vitest
58
+ ```
59
+
60
+ ## License
61
+
62
+ MIT
package/SKILL.md ADDED
@@ -0,0 +1,79 @@
1
+ ---
2
+ name: vibo-mcp
3
+ description: Access your Vibo (vibodj.com) event music planning via MCP. Use when the user asks about their Vibo events, wedding/event timeline, song requests, playlists, or "do not play" list, or wants to add or like songs, join an event from a share link, or export songs to Spotify/Apple Music. Triggers on phrases like "what's on my Vibo timeline", "add this song to the first dance", "what songs did guests request", "join this Vibo event", or "export our playlist to Spotify". Requires vibo-mcp installed and the vibo server registered (see Setup below).
4
+ ---
5
+
6
+ # vibo-mcp
7
+
8
+ MCP server for [Vibo](https://vibodj.com) — plan your event music as a host/couple: events, timeline sections, song requests, playlists, and exports, via natural language.
9
+
10
+ - **npm:** [npmjs.com/package/vibo-mcp](https://www.npmjs.com/package/vibo-mcp)
11
+ - **Source:** [github.com/chrischall/vibo-mcp](https://github.com/chrischall/vibo-mcp)
12
+
13
+ ## Setup
14
+
15
+ ### Option A — npx (recommended)
16
+
17
+ Add to `.mcp.json` in your project or `~/.claude/mcp.json`:
18
+
19
+ ```json
20
+ {
21
+ "mcpServers": {
22
+ "vibo": {
23
+ "command": "npx",
24
+ "args": ["-y", "vibo-mcp"],
25
+ "env": {
26
+ "VIBO_EMAIL": "you@example.com",
27
+ "VIBO_PASSWORD": "your_password"
28
+ }
29
+ }
30
+ }
31
+ }
32
+ ```
33
+
34
+ ### Authentication
35
+
36
+ Pick one:
37
+
38
+ - **Email + password (recommended):** set `VIBO_EMAIL` and `VIBO_PASSWORD`. The
39
+ server signs in server-side and manages the token (refreshing as needed).
40
+ - **Captured token (for Apple/Google/Facebook accounts):** set
41
+ `VIBO_ACCESS_TOKEN` (and `VIBO_REFRESH_TOKEN`) with values captured from a
42
+ signed-in `web.vibodj.com` session — no password needed.
43
+
44
+ The server boots without credentials (so it can be installed and probed); the
45
+ config error only appears on the first tool call.
46
+
47
+ ## Tools
48
+
49
+ ### Reads
50
+ - `vibo_get_me` — your profile (and whether Spotify/Apple Music are connected).
51
+ - `vibo_list_events` — your upcoming (or `past:true`) events.
52
+ - `vibo_get_event` — full details for one event.
53
+ - `vibo_list_sections` — an event's timeline (Ceremony, First Dance, Dinner, …).
54
+ - `vibo_get_section_songs` — songs requested in a section, with likes/flags/comments.
55
+ - `vibo_list_section_questions` — the DJ's planning questions for a section (type, options, current answer).
56
+ - `vibo_search_songs` — find songs to add (Vibo catalog or connected Spotify).
57
+ - `vibo_get_playlists` / `vibo_get_playlist_songs` — your connected-service playlists.
58
+ - `vibo_list_notifications` / `vibo_get_notifications_count`.
59
+ - `vibo_healthcheck` — confirm connectivity + auth.
60
+
61
+ ### Writes (confirm-gated)
62
+ Each mutating tool makes **no** network call unless `confirm: true`; without it
63
+ you get a dry-run preview of exactly what would be sent.
64
+
65
+ - `vibo_add_song_to_section` — add a searched song to a section.
66
+ - `vibo_toggle_song_like` — like/unlike a song.
67
+ - `vibo_join_event` — join via a share link/hash (e.g. a `vibodj.app.link/...` URL).
68
+ - `vibo_leave_event`.
69
+ - `vibo_create_event_contact` — add a host/guest contact.
70
+ - `vibo_answer_question` — answer a section planning question (text / option ids / link).
71
+ - `vibo_mark_notifications_read`.
72
+ - `vibo_export_event_to_spotify` / `vibo_export_event_to_apple_music`.
73
+
74
+ ## Typical flow
75
+
76
+ 1. `vibo_list_events` → pick an event id.
77
+ 2. `vibo_list_sections` → pick a section id.
78
+ 3. `vibo_search_songs` → get a song's `songUrl`/`viboSongId`.
79
+ 4. `vibo_add_song_to_section` (with `confirm: true`).