dLazy AIdLazy AI
Model ReferenceVideo Models

kling-v3

Kling V3 general video model, supports text + up to 4 reference images, suitable for stable short video clips and daily creative workflows.

Kling V3 general video model, supports text + up to 4 reference images, suitable for stable short video clips and daily creative workflows.

Overview

FieldValue
Model IDkling-v3
CLIdlazy kling-v3
MCPkling-v3 (Claude Code surfaces this as mcp__dlazy__kling-v3)
Typevideo
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
generation_mode"frames" | "components"NoGeneration Mode(frames=Frames; components=Components); default "frames"
imagesarray<url>NoImages; image (accepts URL, local path, or data: URL); max 4 items
subjectsarray<string>NoSubjects; max 3 items; only when !(generation_mode="frames")
aspect_ratio"16:9" | "9:16" | "1:1"NoAspect Ratio; default "16:9"
duration"3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15"NoDuration (s); default "5"
mode"std" | "pro"NoMode; default "std"
soundstringNoSound Effect; default false

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

CLI Examples

dlazy kling-v3 --help
dlazy kling-v3 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg"
dlazy kling-v3 --prompt "Write your prompt here" --images "./local-image.png"
dlazy kling-v3 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --dry-run
dlazy kling-v3 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --no-wait
dlazy kling-v3 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --batch 4

Compose with a pipeline

dlazy gpt-image-2 --prompt "reference visual" \
  | dlazy kling-v3 --images - --prompt "Write your prompt here"

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__kling-v3; generic clients (e.g. OpenClaw) call it as kling-v3.

See MCP setup for how to add the server.

Output

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

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

On this page