Placid MCP Server

by felores
Verified

placid_generate_image

Generate an image using a template and provided assets

Input Schema

NameRequiredDescriptionDefault
layersYesKey-value pairs for dynamic content. Keys must match template layer names.
template_idYesUUID of the template to use

Input Schema (JSON Schema)

{ "properties": { "layers": { "additionalProperties": { "oneOf": [ { "properties": { "text": { "description": "Content for text layers", "type": "string" } }, "required": [ "text" ], "type": "object" }, { "properties": { "image": { "description": "URL for image/video layers", "format": "uri", "type": "string" } }, "required": [ "image" ], "type": "object" } ] }, "description": "Key-value pairs for dynamic content. Keys must match template layer names.", "type": "object" }, "template_id": { "description": "UUID of the template to use", "type": "string" } }, "required": [ "template_id", "layers" ], "type": "object" }