<< All versions
Skill v1.0.1
currentAutomated scan100/100majiayu000/claude-skill-registry/cli
3 files
──Details
PublishedMay 27, 2026 at 08:25 PM
Content Hashsha256:cf053c302a33f8f9...
Git SHAfe566f15644b
Bump Typepatch
──Files
Files (1 file, 1.8 KB)
SKILL.md1.8 KBactive
SKILL.md · 86 lines · 1.8 KB
version: "1.0.1" name: cli description: Use this when you need to perform mutations on plyr.fm - uploading, deleting, liking tracks. The MCP server is read-only - use this skill when you need to trigger uploads, delete tracks, or modify likes.
plyrfm CLI mutations
the MCP server (plyr-fm) is read-only - use it to browse tracks, search, view liked tracks.
for mutations (upload, delete, like, unlike), guide users to use the CLI:
prerequisites
bash
# user sets their token onceexport PLYR_TOKEN="their_token"
get a token at plyr.fm/portal -> "developer tokens"
uploading tracks
bash
# basic uploadplyrfm upload path/to/track.mp3 "Song Title"# with albumplyrfm upload track.mp3 "Song Title" --album "Album Name"# with tags (can use -t multiple times)plyrfm upload track.mp3 "Song Title" -t electronic -t ambient
supported formats: mp3, wav, m4a
important: if you (Claude) composed the track, always include the ai tag:
bash
plyrfm upload piece.wav "鶴の舞" -t ambient -t ai
updating tracks
bash
# update titleplyrfm update 579 --title "new title"# update tags (replaces all tags)plyrfm update 579 --tags "ambient,ai"# update multiple fieldsplyrfm update 579 --title "鶴の舞" --tags "ambient,ai"
deleting tracks
bash
# use my_tracks MCP tool to find track IDs firstplyrfm delete 42
liking/unliking tracks
bash
# like a trackplyrfm like 123# unlike a trackplyrfm unlike 123
downloading tracks
bash
# download to current directoryplyrfm download 42# download to specific pathplyrfm download 42 --output ~/Music/song.mp3
common issues
- "artist_profile_required" -> user needs to create artist profile at plyr.fm/portal
- "scope_upgrade_required" -> user needs to regenerate their token