mcp-painter

by flrngel
Verified

drawing_generateCanvas

Generate a new drawing canvas with specified width and height.

Input Schema

NameRequiredDescriptionDefault
heightYesHeight of the canvas in pixels
widthYesWidth of the canvas in pixels

Input Schema (JSON Schema)

{ "properties": { "height": { "description": "Height of the canvas in pixels", "type": "number" }, "width": { "description": "Width of the canvas in pixels", "type": "number" } }, "required": [ "width", "height" ], "type": "object" }