dLazy AIdLazy AI
Model ReferenceText Tools

elevenlabs-stt

ElevenLabs scribe_v1 speech-to-text with auto language detection and optional speaker diarization. Suitable for subtitles, transcription, and meeting notes.

ElevenLabs scribe_v1 speech-to-text with auto language detection and optional speaker diarization. Suitable for subtitles, transcription, and meeting notes.

Overview

FieldValue
Model IDelevenlabs-stt
CLIdlazy elevenlabs-stt
MCPelevenlabs-stt (Claude Code surfaces this as mcp__dlazy__elevenlabs-stt)
Typetext
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)
language_code"zh" | "en"NoLanguage; default "zh"
diarizestringNoDiarize Speakers; default false

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

CLI Examples

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

Compose with a pipeline

dlazy gemini-2.5-tts --prompt "reference voice line" \
  | dlazy elevenlabs-stt --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-stt; generic clients (e.g. OpenClaw) call it as elevenlabs-stt.

See MCP setup for how to add the server.

Output

{
  "outputs": [
    { "type": "json", "id": "o_...", "value": { /* tool-specific payload */ } }
  ]
}

Structured payloads are returned as json outputs; the inner shape is tool-specific.

On this page