Face Generator MCP Server

MCP server for generating human face images with various shapes and sizes

Local serverstdio

What is the Face Generator MCP server?

Face Generator MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for generating human face images with various shapes and sizes.

What you get

This guide is designed for beginners, so we'll walk through everything step-by-step. We'll cover:

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

What the assistant can call

Once Face Generator is connected, these are the calls the assistant has available:

  • Double — check the settings in cline_mcp_settings.json. It must be the correct path to the index.js file
  • outputDir — (required) Directory to save the images
  • fileName — Optional file name (defaults to timestamp)
  • count — Number of images to generate (default: 1)
  • width — Image width in pixels (default: 256)
  • height — Image height in pixels (default: 256)
  • shape — Image shape (square|circle|rounded, default: square)
  • borderRadius — Border radius for rounded shape (default: 32)
  • returnImageContent — Return image as base64 encoded content instead of file path (default: false)

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Face Generator.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the face generator mcp server does with a few real requests.

Choosing this one

This sits in the file and storage access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Face Generator's toolset — Double, outputDir, fileName and 6 more — is a fair guide to whether it matches your workflow. It is maintained by dasheck0; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Face Generator's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Doublecheck the settings in cline_mcp_settings.json. It *must* be the correct path to the index.js file.
outputDir(required) Directory to save the images
fileNameOptional file name (defaults to timestamp)
countNumber of images to generate (default: 1)
widthImage width in pixels (default: 256)
heightImage height in pixels (default: 256)
shapeImage shape (square|circle|rounded, default: square)
borderRadiusBorder radius for rounded shape (default: 32)
returnImageContentReturn image as base64 encoded content instead of file path (default: false)

Example prompts to try

  • Use Face Generator to Double.
  • Use Face Generator to outputDir.
  • Use Face Generator to fileName.

Frequently asked questions

Node.js (LTS version) and npm are required. Verify installation with `node -v` and `npm -v`.