vibo-mcp 1.0.0 → 1.2.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.
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "metadata": {
9
9
  "description": "MCP server for Vibo (vibodj.com) — plan event music, song requests, and playlists via natural language",
10
- "version": "1.0.0"
10
+ "version": "1.2.0"
11
11
  },
12
12
  "plugins": [
13
13
  {
@@ -15,14 +15,21 @@
15
15
  "displayName": "Vibo",
16
16
  "source": "./",
17
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",
18
+ "version": "1.2.0",
19
19
  "author": {
20
20
  "name": "Chris Hall"
21
21
  },
22
22
  "homepage": "https://github.com/chrischall/vibo-mcp",
23
23
  "repository": "https://github.com/chrischall/vibo-mcp",
24
24
  "license": "MIT",
25
- "keywords": ["vibo", "vibodj", "wedding", "dj", "music", "mcp"],
25
+ "keywords": [
26
+ "vibo",
27
+ "vibodj",
28
+ "wedding",
29
+ "dj",
30
+ "music",
31
+ "mcp"
32
+ ],
26
33
  "category": "productivity"
27
34
  }
28
35
  ]
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vibo-mcp",
3
3
  "displayName": "Vibo",
4
- "version": "1.0.0",
4
+ "version": "1.2.0",
5
5
  "description": "MCP server for Vibo (vibodj.com) — plan event music, song requests, and playlists via natural language",
6
6
  "author": {
7
7
  "name": "Chris Hall",
@@ -10,7 +10,14 @@
10
10
  "homepage": "https://github.com/chrischall/vibo-mcp",
11
11
  "repository": "https://github.com/chrischall/vibo-mcp",
12
12
  "license": "MIT",
13
- "keywords": ["vibo", "vibodj", "wedding", "dj", "music", "mcp"],
13
+ "keywords": [
14
+ "vibo",
15
+ "vibodj",
16
+ "wedding",
17
+ "dj",
18
+ "music",
19
+ "mcp"
20
+ ],
14
21
  "skills": "./SKILL.md",
15
22
  "mcp": "./.mcp.json"
16
23
  }
package/SKILL.md CHANGED
@@ -54,7 +54,9 @@ config error only appears on the first tool call.
54
54
  - `vibo_get_section_songs` — songs requested in a section, with likes/flags/comments.
55
55
  - `vibo_list_section_questions` — the DJ's planning questions for a section (type, options, current answer).
56
56
  - `vibo_search_songs` — find songs to add (Vibo catalog or connected Spotify).
57
+ - `vibo_list_section_song_ideas` / `vibo_list_song_ideas_songs` — browse the DJ's suggested song collections per section.
57
58
  - `vibo_get_playlists` / `vibo_get_playlist_songs` — your connected-service playlists.
59
+ - `vibo_list_event_users` — the hosts and guests on an event.
58
60
  - `vibo_list_notifications` / `vibo_get_notifications_count`.
59
61
  - `vibo_healthcheck` — confirm connectivity + auth.
60
62
 
@@ -63,11 +65,18 @@ Each mutating tool makes **no** network call unless `confirm: true`; without it
63
65
  you get a dry-run preview of exactly what would be sent.
64
66
 
65
67
  - `vibo_add_song_to_section` — add a searched song to a section.
68
+ - `vibo_remove_song_from_section` / `vibo_move_song` / `vibo_reorder_songs`.
69
+ - `vibo_update_song` — mark must-play / do-not-play, or set a comment.
66
70
  - `vibo_toggle_song_like` — like/unlike a song.
71
+ - `vibo_comment_on_song` / `vibo_comment_on_section` (+ delete) — leave the DJ notes.
72
+ - `vibo_import_playlist_to_section` — pull tracks from a connected Spotify/Apple playlist.
67
73
  - `vibo_join_event` — join via a share link/hash (e.g. a `vibodj.app.link/...` URL).
68
74
  - `vibo_leave_event`.
69
75
  - `vibo_create_event_contact` — add a host/guest contact.
70
- - `vibo_answer_question` answer a section planning question (text / option ids / link).
76
+ - `vibo_invite_users` / `vibo_change_user_role` / `vibo_remove_user` manage who's on the event.
77
+ - `vibo_update_section` — edit a section's name, time, or note.
78
+ - `vibo_answer_question` — answer a planning question (text / option ids / link / image+file uploads).
79
+ - `vibo_set_profile_photo` — set your profile photo from a local image.
71
80
  - `vibo_mark_notifications_read`.
72
81
  - `vibo_export_event_to_spotify` / `vibo_export_event_to_apple_music`.
73
82