dLazy AIdLazy AI
Model ReferenceAudio Models

elevenlabs-dialogue

ElevenLabs eleven_v3 multi-voice dialogue: assign a different voice per line (up to 10) and render the whole conversation in one shot. Supports audio tags like [giggling], [whispers] — great for character dialogue, podcasts, and short skits. Before picking a voice, you can search for the right one via elevenlabs-search.

ElevenLabs eleven_v3 multi-voice dialogue: assign a different voice per line (up to 10) and render the whole conversation in one shot. Supports audio tags like [giggling], [whispers] — great for character dialogue, podcasts, and short skits. Before picking a voice, you can search for the right one via elevenlabs-search.

Overview

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

Parameters

ArgTypeRequiredNotes
inputsarray<string>NoDialogue lines (assign a voice per line, max 10 unique voices); max 20 items; default [{"voice_id":"21m00Tcm4TlvDq8ikWAM","text":""},{"voice_id":"21m00Tcm4TlvDq8ikWAM","text":""}]
stabilitystringNoStability; default 0.5
language_codestringNoLanguage
seedstringNoSeed

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

CLI Examples

dlazy elevenlabs-dialogue --help
dlazy elevenlabs-dialogue --inputs '{"voice_id":"value","text":"value"}' --stability 0.5 --language_code "value"
dlazy elevenlabs-dialogue --inputs '{"voice_id":"value","text":"value"}' --stability 0.5 --language_code "value" --dry-run
dlazy elevenlabs-dialogue --inputs '{"voice_id":"value","text":"value"}' --stability 0.5 --language_code "value" --no-wait
dlazy elevenlabs-dialogue --inputs '{"voice_id":"value","text":"value"}' --stability 0.5 --language_code "value" --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__elevenlabs-dialogue; generic clients (e.g. OpenClaw) call it as elevenlabs-dialogue.

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