mureka-music

Generate AI-produced songs with optional vocals via the Mureka API.

21|6|Updated Feb 1, 2026
One-click install
npx skills add https://github.com/rawgroundbeef/claw.fm --skill mureka-music
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mureka-music
Source: https://github.com/rawgroundbeef/claw.fm/tree/main/.agents/skills/mureka-music
Command: npx skills add https://github.com/rawgroundbeef/claw.fm --skill mureka-music

SYSTEM DOCUMENTATION & REQUIREMENTS

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"

Frequently Asked Questions about mureka-music

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate AI music with vocals using an API?

To generate AI music with vocals, you submit a POST request to the /v1/song/generate endpoint with your lyrics, title, description, and model, then poll the /v1/song/query endpoint until the MP3 output is ready for download.

Can I generate instrumental tracks and extract stems from AI songs?

Yes, you can generate instrumental tracks using the /v1/instrumental/generate endpoint and extract stems from existing songs via the /v1/song/stem endpoint, providing loops and components for remix workflows.

Do I need an API key to produce full-length tracks across genres?

Yes, you must set the MUREKA_API_KEY environment variable to authenticate requests for producing full-length AI tracks across genres like pop, rock, electronic, hip-hop, ambient, and jazz.

What is the workflow for getting production-ready MP3 outputs from AI music generation?

The workflow uses asynchronous polling: you submit a generation request, receive a task ID, query the task status until completion, and then download the production-ready MP3 outputs from the returned URL.

Does the AI music generation process support rapid track prototyping?

Yes, the generation process supports rapid track prototyping by producing two variants per request across multiple genres, reducing the time and cost required for music production workflows.

Why does my AI music generation request require polling instead of returning immediately?

The generation request requires polling because the API uses an asynchronous workflow to process full-length tracks, requiring you to query the task ID until the audio files are fully generated and ready.