Face Generator MCP Server

generate_face

Generate and save a human face image

Input Schema

NameRequiredDescriptionDefault
borderRadiusNoBorder radius for rounded shape (default: 32)
countNoNumber of images to generate (default: 1)
fileNameNoOptional file name (defaults to timestamp)1741519488156.png
heightNoHeight of the image in pixels (default: 256)
outputDirYesDirectory to save the image
shapeNoImage shape (square|circle|rounded, default: square)square
widthNoWidth of the image in pixels (default: 256)

Input Schema (JSON Schema)

{ "properties": { "borderRadius": { "default": 32, "description": "Border radius for rounded shape (default: 32)", "maximum": 512, "minimum": 0, "type": "number" }, "count": { "default": 1, "description": "Number of images to generate (default: 1)", "maximum": 10, "minimum": 1, "type": "number" }, "fileName": { "default": "1741519488156.png", "description": "Optional file name (defaults to timestamp)", "type": "string" }, "height": { "default": 256, "description": "Height of the image in pixels (default: 256)", "maximum": 1024, "minimum": 64, "type": "number" }, "outputDir": { "description": "Directory to save the image", "type": "string" }, "shape": { "default": "square", "description": "Image shape (square|circle|rounded, default: square)", "enum": [ "square", "circle", "rounded" ], "type": "string" }, "width": { "default": 256, "description": "Width of the image in pixels (default: 256)", "maximum": 1024, "minimum": 64, "type": "number" } }, "required": [ "outputDir" ], "type": "object" }

You must be authenticated.

Other Tools