What problem does it solve?
This Skill enables music creators to generate AI-produced tracks with optional vocals via the Mureka API, reducing time and cost for production.
Core Features & Use Cases
- Full songs with AI vocals, instrumentals, or stems across genres (pop, rock, electronic, hip-hop, ambient, jazz).
- Two variants per generation and production-ready MP3 output; workflow supports lyrics generation, instrumental generation, and stem extraction.
- Use cases include rapid track prototyping for submission to platforms like claw.fm, or creating loops and stems for remixes.
Quick Start
Set your API key and run a simple song generation flow:
export MUREKA_API_KEY="your-api-key"
curl -s https://api.mureka.ai/v1/song/generate
-H "Authorization: Bearer $MUREKA_API_KEY"
-H "Content-Type: application/json"
-d '{"lyrics": "[Verse 1]\nNeon signs...","title": "City Lights","desc": "indie rock, melancholic, male vocals, guitar driven","model": "V8"}' | jq .
Then poll for completion:
curl -s https://api.mureka.ai/v1/song/query/$TASK_ID
-H "Authorization: Bearer $MUREKA_API_KEY" | jq .
And download MP3:
curl -L -o track.mp3 "$MP3_URL"