Kobold MCP Server

kobold_img2img

Transform existing image using prompt

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
cfg_scaleNo
denoising_strengthNo
heightNo
init_imagesYes
negative_promptNo
promptYes
sampler_nameNo
seedNo
stepsNo
widthNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "apiUrl": { "default": "http://localhost:5001", "type": "string" }, "cfg_scale": { "type": "number" }, "denoising_strength": { "type": "number" }, "height": { "type": "number" }, "init_images": { "items": { "type": "string" }, "type": "array" }, "negative_prompt": { "type": "string" }, "prompt": { "type": "string" }, "sampler_name": { "type": "string" }, "seed": { "type": "number" }, "steps": { "type": "number" }, "width": { "type": "number" } }, "required": [ "prompt", "init_images" ], "type": "object" }