@lucaperret/tidal-cli 1.2.2 → 1.2.4
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 +22 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,8 +25,10 @@ tidal-cli wraps the [Tidal API v2](https://developer.tidal.com) into a single co
|
|
|
25
25
|
- **Playlists** — full CRUD, add/remove tracks, reorder, add entire albums
|
|
26
26
|
- **Library** — favorites for artists, albums, tracks, videos, playlists
|
|
27
27
|
- **Playback** — stream info, direct URLs, local playback via DASH
|
|
28
|
-
- **Recommendations** — personalized mixes (
|
|
29
|
-
- **History** — recently added tracks, albums, artists
|
|
28
|
+
- **Recommendations** — personalized mixes (Daily, Discovery, New Release, Offline) with drill-down into mix items
|
|
29
|
+
- **History** — recently added tracks, albums, artists; search history (list, delete, clear)
|
|
30
|
+
- **Save for Later** — bookmark items in a separate queue from your main library
|
|
31
|
+
- **Sharing** — generate public share links for tracks and albums
|
|
30
32
|
- **JSON output** on every command for scripting and agent use
|
|
31
33
|
|
|
32
34
|
## Installation
|
|
@@ -121,13 +123,28 @@ tidal-cli library remove-playlist --playlist-id <id>
|
|
|
121
123
|
### Discovery & History
|
|
122
124
|
|
|
123
125
|
```bash
|
|
124
|
-
tidal-cli recommend
|
|
126
|
+
tidal-cli recommend # all mix categories
|
|
127
|
+
tidal-cli recommend --type daily # daily | discovery | new-release | offline
|
|
128
|
+
tidal-cli mix items <mix-id> --type daily # tracks inside a specific mix
|
|
125
129
|
tidal-cli history tracks
|
|
126
130
|
tidal-cli history albums
|
|
127
131
|
tidal-cli history artists
|
|
132
|
+
tidal-cli search history # your recent searches
|
|
133
|
+
tidal-cli search history-delete <entry-id>
|
|
134
|
+
tidal-cli search history-clear
|
|
128
135
|
tidal-cli user profile
|
|
129
136
|
```
|
|
130
137
|
|
|
138
|
+
### Save for Later & Sharing
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
tidal-cli saved list
|
|
142
|
+
tidal-cli saved add --type tracks --id <id> # tracks | albums | artists | playlists | videos
|
|
143
|
+
tidal-cli saved remove --type albums --id <id>
|
|
144
|
+
tidal-cli share track <id> # creates a public share link
|
|
145
|
+
tidal-cli share album <id>
|
|
146
|
+
```
|
|
147
|
+
|
|
131
148
|
### Playback
|
|
132
149
|
|
|
133
150
|
```bash
|
|
@@ -158,7 +175,7 @@ tidal-cli is available as a remote MCP server for [Claude Desktop](https://claud
|
|
|
158
175
|
2. Enter: `https://tidal-cli.lucaperret.ch/api/mcp`
|
|
159
176
|
3. Click "Connect" → log in to Tidal → done
|
|
160
177
|
|
|
161
|
-
|
|
178
|
+
40 tools with OAuth authentication, safety annotations, and 3 prompt templates.
|
|
162
179
|
|
|
163
180
|
## Agent Automation
|
|
164
181
|
|
|
@@ -209,7 +226,7 @@ npm test # run once
|
|
|
209
226
|
npm run test:watch # watch mode
|
|
210
227
|
```
|
|
211
228
|
|
|
212
|
-
|
|
229
|
+
143 tests covering search, playlists, artists, tracks, albums, library, recommendations, mixes, save-for-later, sharing, search history, auth, and session.
|
|
213
230
|
|
|
214
231
|
## License
|
|
215
232
|
|