navidrome-mcp 1.0.2 → 1.0.3

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 +9 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -278,6 +278,7 @@ Add the Navidrome MCP server:
278
278
  | `get_song` | Detailed song information |
279
279
  | `get_album` | Detailed album information |
280
280
  | `get_artist` | Detailed artist information |
281
+ | `get_song_playlists` | Get all playlists that contain a specific song |
281
282
 
282
283
  ### 🔍 Search & Discovery
283
284
 
@@ -290,6 +291,7 @@ Add the Navidrome MCP server:
290
291
  | `get_similar_artists` | Find similar artists (Last.fm) |
291
292
  | `get_similar_tracks` | Find similar tracks (Last.fm) |
292
293
  | `get_artist_info` | Artist biography and tags |
294
+ | `get_top_tracks_by_artist` | Get top tracks for an artist from Last.fm |
293
295
  | `get_trending_music` | Global music trends |
294
296
 
295
297
  ### 🎵 Playlist Operations
@@ -297,6 +299,7 @@ Add the Navidrome MCP server:
297
299
  | Tool | Description |
298
300
  |------|-------------|
299
301
  | `list_playlists` | View all playlists |
302
+ | `get_playlist` | Get detailed information about a specific playlist by ID |
300
303
  | `create_playlist` | Create new playlist |
301
304
  | `update_playlist` | Update playlist metadata |
302
305
  | `delete_playlist` | Remove playlist |
@@ -324,6 +327,7 @@ Add the Navidrome MCP server:
324
327
  | `list_most_played` | Find most played content |
325
328
  | `get_queue` | View playback queue |
326
329
  | `set_queue` | Set playback queue |
330
+ | `clear_queue` | Clear the playback queue |
327
331
 
328
332
  ### 📻 Radio Management
329
333
 
@@ -331,9 +335,12 @@ Add the Navidrome MCP server:
331
335
  |------|-------------|
332
336
  | `validate_radio_stream` | Test stream URL validity |
333
337
  | `list_radio_stations` | View all stations |
338
+ | `get_radio_station` | Get detailed information about a specific radio station by ID |
334
339
  | `create_radio_station` | Add new station (with optional validation*) |
340
+ | `delete_radio_station` | Delete an internet radio station by ID |
335
341
  | `batch_create_radio_stations` | Batch add multiple stations (with optional validation*) |
336
342
  | `play_radio_station` | Start radio playback |
343
+ | `get_current_radio_info` | Get information about currently playing radio station and stream metadata |
337
344
  | `discover_radio_stations` | Find internet radio stations globally |
338
345
  | `get_radio_filters` | Get available search filters (genres, countries, etc.) |
339
346
  | `get_station_by_uuid` | Get detailed station information |
@@ -353,8 +360,10 @@ Add the Navidrome MCP server:
353
360
  | Tool | Description |
354
361
  |------|-------------|
355
362
  | `list_tags` | Browse all metadata tags |
363
+ | `get_tag` | Get detailed information about a specific tag by ID |
356
364
  | `search_by_tags` | Search by specific tags |
357
365
  | `get_tag_distribution` | Analyze tag usage |
366
+ | `list_unique_tags` | List all unique tag names with statistics (how many unique values, total usage) |
358
367
 
359
368
  ## Troubleshooting
360
369
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "navidrome-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for interacting with Navidrome music server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",