by GongRzhe
Image-Generation-MCP-Server is an MCP server that generates images from text prompts using the Replicate Flux model. Its main purpose is to provide a flexible and configurable tool for creating images based on textual descriptions.
Image-Generation-MCP-Server is an MCP (Multi-Client Protocol) server that provides image generation capabilities. It leverages the Replicate Flux model to generate images from text prompts.
Image-Generation-MCP-Server can be installed and used in several ways:
npx -y @smithery/cli install @GongRzhe/Image-Generation-MCP-Server --client claude
.npm install -g @gongrzhe/image-gen-server
or locally with npm install @gongrzhe/image-gen-server
.claude_desktop_config.json
file (location varies by OS).mcpServers
for "image-gen", specifying the command (npx or node), arguments, and environment variables.your-replicate-api-token
in the configuration.REPLICATE_API_TOKEN
(required): Your Replicate API token.MODEL
(optional): The Replicate model to use for image generation (defaults to "black-forest-labs/flux-schnell").disabled
: Set to true
to disable the server.autoApprove
: An array of tool names that can be executed without user confirmation.generate_image
: Generates images using the Flux model based on text prompts.
prompt
(required): Text description of the image.seed
(optional): Random seed for reproducibility.aspect_ratio
(optional): Image aspect ratio (default: "1:1").output_format
(optional): Output format ("webp", "jpg", or "png", default: "webp").num_outputs
(optional): Number of images to generate (1-4, default: 1).const result = await use_mcp_tool({
server_name: "image-gen",
tool_name: "generate_image",
arguments: {
prompt: "A beautiful sunset over mountains",
aspect_ratio: "16:9",
output_format: "png",
num_outputs: 1
}
});
The tool returns an array of URLs to the generated images.generate_image
tool with various parameters for fine-grained control.seed
parameter for consistent results.What is REPLICATE_API_TOKEN
?
It is your authentication token for the Replicate API, required to use their models. You can obtain it from your Replicate account settings.
Can I use a different model than the default?
Yes, you can specify an alternative Replicate model using the MODEL
environment variable in your Claude Desktop configuration.
How many images can I generate at once?
You can generate between 1 and 4 images per request using the num_outputs
parameter.
What image formats are supported?
The generate_image
tool supports WEBP, JPG, and PNG output formats.
How can I ensure the same image is generated every time?
You can use the seed
parameter with a specific value to achieve reproducible image generation.
This MCP server provides image generation capabilities using the Replicate Flux model.
To install Image Generation MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @GongRzhe/Image-Generation-MCP-Server --client claude
You can use the package directly from npm without installing it locally:
# No installation needed - npx will handle it
If you prefer a local installation:
# Global installation
npm install -g @gongrzhe/image-gen-server
# Or local installation
npm install @gongrzhe/image-gen-server
Edit your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
This method runs the server directly from npm without needing local files:
{
"mcpServers": {
"image-gen": {
"command": "npx",
"args": ["@gongrzhe/image-gen-server"],
"env": {
"REPLICATE_API_TOKEN": "your-replicate-api-token",
"MODEL": "alternative-model-name"
},
"disabled": false,
"autoApprove": []
}
}
}
If you installed the package locally:
{
"mcpServers": {
"image-gen": {
"command": "node",
"args": ["/path/to/image-gen-server/build/index.js"],
"env": {
"REPLICATE_API_TOKEN": "your-replicate-api-token",
"MODEL": "alternative-model-name"
},
"disabled": false,
"autoApprove": []
}
}
}
your-replicate-api-token
in the MCP settingsREPLICATE_API_TOKEN
(required): Your Replicate API token for authenticationMODEL
(optional): The Replicate model to use for image generation. Defaults to "black-forest-labs/flux-schnell"disabled
: Controls whether the server is enabled (false
) or disabled (true
)autoApprove
: Array of tool names that can be executed without user confirmation. Empty array means all tool calls require confirmation.Generates images using the Flux model based on text prompts.
prompt
(required): Text description of the image to generateseed
(optional): Random seed for reproducible generationaspect_ratio
(optional): Image aspect ratio (default: "1:1")output_format
(optional): Output format - "webp", "jpg", or "png" (default: "webp")num_outputs
(optional): Number of images to generate (1-4, default: 1)const result = await use_mcp_tool({
server_name: "image-gen",
tool_name: "generate_image",
arguments: {
prompt: "A beautiful sunset over mountains",
aspect_ratio: "16:9",
output_format: "png",
num_outputs: 1
}
});
The tool returns an array of URLs to the generated images.
This project is licensed under the MIT License.
Please log in to share your review and rating for this MCP.
Discover more MCP servers with similar functionality and use cases
by recraft-ai
Integrates Recraft's raster and vector image operations into an MCP server, enabling clients to generate, edit, style, vectorize, upscale, and manage images via API calls.
by sunriseapps
ImageSorcery MCP is a Python-based server that provides a suite of computer vision and image processing tools. It enables AI assistants to perform various image manipulation and analysis tasks locally, ensuring data privacy and security.
by felores
placid-mcp-server integrates Placid.app with Model Context Protocol (MCP) compatible hosts, enabling dynamic image and video creative generation from templates.
by nkapila6
Generate AI‑crafted memes and convert them into Telegram (with WhatsApp support forthcoming) stickers without requiring any external APIs.
by jacwu
mcp-server-aoai-dalle3 is an MCP server that integrates with Azure OpenAI's DALL-E 3 service. It allows MCP clients to generate images from text prompts with customizable parameters.
by netdata
Real-time, per‑second infrastructure monitoring platform that provides instant insights, auto‑discovery, edge‑based machine‑learning anomaly detection, and lightweight visualizations without requiring complex configuration.
by zed-industries
Provides real-time collaborative editing powered by Rust, enabling developers to edit code instantly across machines with a responsive, GPU-accelerated UI.
by github
Enables AI agents, assistants, and chatbots to interact with GitHub via natural‑language commands, providing read‑write access to repositories, issues, pull requests, workflows, security data and team activity.
by daytonaio
Provides a secure, elastic sandbox environment for executing AI‑generated code with isolated runtimes and sub‑90 ms provisioning.