dLazy AIdLazy AI
Model ReferenceImage Models

superres

Image super-resolution tool: enhances image clarity and details, returning enhanced URL, suitable for low-res asset restoration and upscaling.

Image super-resolution tool: enhances image clarity and details, returning enhanced URL, suitable for low-res asset restoration and upscaling.

Overview

FieldValue
Model IDsuperres
CLIdlazy superres
MCPsuperres (Claude Code surfaces this as mcp__dlazy__superres)
Typeimage
ExecutionReturns synchronously
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
imageurlYesImage (URL); image (accepts URL, local path, or data: URL)

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

CLI Examples

dlazy superres --help
dlazy superres --image "https://example.com/reference.jpg"
dlazy superres --image "./local-image.png"
dlazy superres --image "https://example.com/reference.jpg" --dry-run
dlazy superres --image "https://example.com/reference.jpg" --batch 4

Compose with a pipeline

dlazy gpt-image-2 --prompt "reference visual" \
  | dlazy superres --image -

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

See MCP setup for how to add the server.

Output

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

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

On this page