dLazy AIdLazy AI
Model ReferenceAudio Models

elevenlabs-voice-clone

ElevenLabs Instant Voice Cloning (IVC). Upload a clean voice sample to clone a custom voice usable with ElevenLabs TTS.

ElevenLabs Instant Voice Cloning (IVC). Upload a clean voice sample to clone a custom voice usable with ElevenLabs TTS.

Overview

FieldValue
Model IDelevenlabs-voice-clone
CLIdlazy elevenlabs-voice-clone
MCPelevenlabs-voice-clone (Claude Code surfaces this as mcp__dlazy__elevenlabs-voice-clone)
Typeaudio
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
audio_urlurlYesAudio URL; audio (accepts URL, local path, or data: URL)
namestringYesName
descriptionstringNoDescription; default ""

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

CLI Examples

dlazy elevenlabs-voice-clone --help
dlazy elevenlabs-voice-clone --audio_url "https://example.com/source.mp3" --name "value"
dlazy elevenlabs-voice-clone --audio_url "./local-audio.mp3" --name "value"
dlazy elevenlabs-voice-clone --audio_url "https://example.com/source.mp3" --name "value" --dry-run
dlazy elevenlabs-voice-clone --audio_url "https://example.com/source.mp3" --name "value" --no-wait
dlazy elevenlabs-voice-clone --audio_url "https://example.com/source.mp3" --name "value" --batch 4

Compose with a pipeline

dlazy gemini-2.5-tts --prompt "reference voice line" \
  | dlazy elevenlabs-voice-clone --audio_url -

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__elevenlabs-voice-clone; generic clients (e.g. OpenClaw) call it as elevenlabs-voice-clone.

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