dLazy AIdLazy AI
Model ReferenceAudio Models

suno-music

Suno V5.5 music generation. Inspiration mode (auto lyrics) or custom mode (manual style/title/lyrics). Generates music with or without vocals, with fine-grained controls over style weight, weirdness and audio weight.

Suno V5.5 music generation. Inspiration mode (auto lyrics) or custom mode (manual style/title/lyrics). Generates music with or without vocals, with fine-grained controls over style weight, weirdness and audio weight.

Overview

FieldValue
Model IDsuno-music
CLIdlazy suno-music
MCPsuno-music (Claude Code surfaces this as mcp__dlazy__suno-music)
Typeaudio
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
customModestringNoCustom Mode; default false
instrumentalstringNoInstrumental (No Vocals); default false
promptstringNoPrompt; default ""
stylestringNoStyle; default ""; only when customMode=true
titlestringNoTitle; default ""; only when customMode=true
negativeTagsstringNoNegative Tags (styles to exclude); default ""
vocalGender"m" | "f"NoVocal Gender(m=Male; f=Female); default "f"; only when instrumental=false
styleWeightstringNoStyle Weight (0-1); default 0.65
weirdnessConstraintstringNoWeirdness (0-1); default 0.65
audioWeightstringNoAudio Weight (0-1); default 0.65

--input @file.json or --input '{...}' can supply all args at once; flags take precedence over --input keys.

CLI Examples

dlazy suno-music --help
dlazy suno-music --customMode false --instrumental false --prompt ""
dlazy suno-music --customMode false --instrumental false --prompt "" --dry-run
dlazy suno-music --customMode false --instrumental false --prompt "" --no-wait
dlazy suno-music --customMode false --instrumental false --prompt "" --batch 4

MCP

MCP is consumed by AI clients, not handwritten. Once dLazy is registered as an MCP server the tool appears in the client's tool list — Claude Code surfaces it as mcp__dlazy__suno-music; generic clients (e.g. OpenClaw) call it as suno-music.

See MCP setup for how to add the server.

Output

{
  "outputs": [
    { "type": "audio", "id": "o_...", "url": "https://files.dlazy.com/result.mp3", "mimeType": "audio/mpeg" }
  ]
}

Media tools emit image / video / audio / file outputs. Use --output url to print only the URLs on stdout.

On this page