MCP server for AI image generation and repaint with vision analysis
MCP server for AI image generation and repaint with vision analysis. The generate mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 5 defined tools rather than through you.
Everything the assistant can do here goes through one of these:
generate_image — The generate_image tool exposed by this serverrepaint_image — The repaint_image tool exposed by this serverOpenCode — The OpenCode tool exposed by this serverCursor — The Cursor tool exposed by this serverWindsurf — The Windsurf tool exposed by this serverInstallation goes through your MCP client rather than a global install: point it at generate-image-mcp-setup on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
You will need 8 environment variables: IMAGE_PROVIDER, IMAGE_API_KEY, IMAGE_API_URL, IMAGE_MODEL, VISION_PROVIDER, VISION_API_KEY, VISION_API_URL, VISION_MODEL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Generate's toolset — generate_image, repaint_image, OpenCode and 2 more — is a fair guide to whether it matches your workflow. It is maintained by jjjjjack; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| generate_image | The generate_image tool exposed by this server. |
| repaint_image | The repaint_image tool exposed by this server. |
| OpenCode | The OpenCode tool exposed by this server. |
| Cursor | The Cursor tool exposed by this server. |
| Windsurf | The Windsurf tool exposed by this server. |
{
"mcpServers": {
"generate-image": {
"command": "npx",
"args": ["-y", "generate-image-mcp-setup"],
"env": {
"IMAGE_PROVIDER": "your-value",
"IMAGE_API_KEY": "your-value",
"IMAGE_API_URL": "your-value",
"IMAGE_MODEL": "your-value",
"VISION_PROVIDER": "your-value",
"VISION_API_KEY": "your-value",
"VISION_API_URL": "your-value",
"VISION_MODEL": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| IMAGE_PROVIDER | Configuration value read at startup. | Optional |
| IMAGE_API_KEY | Credential the server authenticates with. | Yes |
| IMAGE_API_URL | Endpoint or connection string the server talks to. | Yes |
| IMAGE_MODEL | Configuration value read at startup. | Optional |
| VISION_PROVIDER | Configuration value read at startup. | Optional |
| VISION_API_KEY | Credential the server authenticates with. | Yes |
| VISION_API_URL | Endpoint or connection string the server talks to. | Yes |
| VISION_MODEL | Configuration value read at startup. | Optional |
Build a programmable telecommunications stack for connecting telephony services with the Internet via a cloud-based utility.
Search built for AI, not humans — semantic web search that returns model-ready content, plus code context.
Answers, not links — delegate questions to Perplexity's search-grounded models and get cited responses back.
Give your assistant a voice — text-to-speech, voice cloning and audio tools from the ElevenLabs API.
Give your assistant a real code sandbox — isolated cloud VMs for actually running the code it writes.
The ML hub in your context window — search models, datasets, papers and run Spaces from the official server.