dLazy AIdLazy AI
Model ReferenceText Tools

prompt

Prompt rewriting tool: rewrites user natural language into structured high-quality prompts directly usable for image/video/audio/Agent generation.

Prompt rewriting tool: rewrites user natural language into structured high-quality prompts directly usable for image/video/audio/Agent generation.

Overview

FieldValue
Model IDprompt
CLIdlazy prompt
MCPprompt (Claude Code surfaces this as mcp__dlazy__prompt)
Typetext
ExecutionReturns synchronously
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
inputstringYesInput Text
languagestringNoLanguage; default "en-US"
type"agent" | "image" | "video" | "audio" | "3d"YesType
inputParamsstringNoInput Parameters
modelsarray<string>NoModel IDs

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

CLI Examples

dlazy prompt --help
dlazy prompt --input "value" --type "agent"
dlazy prompt --input "value" --type "agent" --dry-run
dlazy prompt --input "value" --type "agent" --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__prompt; generic clients (e.g. OpenClaw) call it as prompt.

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