- Explore MCP Servers
- chatgpt-native-image-gen-mcp
Chatgpt Native Image Gen Mcp
What is Chatgpt Native Image Gen Mcp
chatgpt-native-image-gen-mcp is an MCP server that utilizes OpenAI’s gpt-image-1 model to generate and edit images based on text prompts, providing a user-friendly interface through the official Python SDK.
Use cases
Use cases include generating unique artwork for blogs, creating promotional images for products, modifying existing images for design projects, and producing illustrations for educational materials.
How to use
To use chatgpt-native-image-gen-mcp, you can call its API methods such as generate_image to create images from text prompts, and edit_image to modify existing images. Input parameters include the prompt, model type, number of images, size, quality, user identifier, and optional filename.
Key features
Key features include the ability to generate images from text prompts, edit images, create variations, and specify image dimensions and quality. It supports multiple input images for editing and provides a straightforward JSON-based input and output schema.
Where to use
chatgpt-native-image-gen-mcp can be used in various fields such as digital art creation, content generation for marketing, social media graphics, and any application requiring custom image generation or editing.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Chatgpt Native Image Gen Mcp
chatgpt-native-image-gen-mcp is an MCP server that utilizes OpenAI’s gpt-image-1 model to generate and edit images based on text prompts, providing a user-friendly interface through the official Python SDK.
Use cases
Use cases include generating unique artwork for blogs, creating promotional images for products, modifying existing images for design projects, and producing illustrations for educational materials.
How to use
To use chatgpt-native-image-gen-mcp, you can call its API methods such as generate_image to create images from text prompts, and edit_image to modify existing images. Input parameters include the prompt, model type, number of images, size, quality, user identifier, and optional filename.
Key features
Key features include the ability to generate images from text prompts, edit images, create variations, and specify image dimensions and quality. It supports multiple input images for editing and provides a straightforward JSON-based input and output schema.
Where to use
chatgpt-native-image-gen-mcp can be used in various fields such as digital art creation, content generation for marketing, social media graphics, and any application requiring custom image generation or editing.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
OpenAI Image Generation MCP Server
This project implements an MCP (Model Context Protocol) server that provides tools for generating and editing images using OpenAI’s gpt-image-1 model via the official Python SDK.
Features
This MCP server provides the following tools:
-
generate_image: Generates an image using OpenAI’sgpt-image-1model based on a text prompt and saves it.- Input Schema:
{ "type": "object", "properties": { "prompt": { "type": "string", "description": "The text description of the desired image(s)." }, "model": { "type": "string", "default": "gpt-image-1", "description": "The model to use (currently 'gpt-image-1')." }, "n": { "type": [ "integer", "null" ], "default": 1, "description": "The number of images to generate (Default: 1)." }, "size": { "type": [ "string", "null" ], "enum": [ "1024x1024", "1536x1024", "1024x1536", "auto" ], "default": "auto", "description": "Image dimensions ('1024x1024', '1536x1024', '1024x1536', 'auto'). Default: 'auto'." }, "quality": { "type": [ "string", "null" ], "enum": [ "low", "medium", "high", "auto" ], "default": "auto", "description": "Rendering quality ('low', 'medium', 'high', 'auto'). Default: 'auto'." }, "user": { "type": [ "string", "null" ], "default": null, "description": "An optional unique identifier representing your end-user." }, "save_filename": { "type": [ "string", "null" ], "default": null, "description": "Optional filename (without extension). If None, a default name based on the prompt and timestamp is used." } }, "required": [ "prompt" ] } - Output:
{"status": "success", "saved_path": "path/to/image.png"}or error dictionary.
- Input Schema:
-
edit_image: Edits an image or creates variations using OpenAI’sgpt-image-1model and saves it. Can use multiple input images as reference or perform inpainting with a mask.- Input Schema:
{ "type": "object", "properties": { "prompt": { "type": "string", "description": "The text description of the desired final image or edit." }, "image_paths": { "type": "array", "items": { "type": "string" }, "description": "A list of file paths to the input image(s). Must be PNG. < 25MB." }, "mask_path": { "type": [ "string", "null" ], "default": null, "description": "Optional file path to the mask image (PNG with alpha channel) for inpainting. Must be same size as input image(s). < 25MB." }, "model": { "type": "string", "default": "gpt-image-1", "description": "The model to use (currently 'gpt-image-1')." }, "n": { "type": [ "integer", "null" ], "default": 1, "description": "The number of images to generate (Default: 1)." }, "size": { "type": [ "string", "null" ], "enum": [ "1024x1024", "1536x1024", "1024x1536", "auto" ], "default": "auto", "description": "Image dimensions ('1024x1024', '1536x1024', '1024x1536', 'auto'). Default: 'auto'." }, "quality": { "type": [ "string", "null" ], "enum": [ "low", "medium", "high", "auto" ], "default": "auto", "description": "Rendering quality ('low', 'medium', 'high', 'auto'). Default: 'auto'." }, "user": { "type": [ "string", "null" ], "default": null, "description": "An optional unique identifier representing your end-user." }, "save_filename": { "type": [ "string", "null" ], "default": null, "description": "Optional filename (without extension). If None, a default name based on the prompt and timestamp is used." } }, "required": [ "prompt", "image_paths" ] } - Output:
{"status": "success", "saved_path": "path/to/image.png"}or error dictionary.
- Input Schema:
Prerequisites
- Python (3.8 or later recommended)
- pip (Python package installer)
- An OpenAI API Key (set directly in the script or via the
OPENAI_API_KEYenvironment variable - using environment variables is strongly recommended for security). - An MCP client environment (like the one used by Cline) capable of managing and launching MCP servers.
Installation
- Clone the repository:
git clone https://github.com/IncomeStreamSurfer/chatgpt-native-image-gen-mcp.git cd chatgpt-native-image-gen-mcp - Set up a virtual environment (Recommended):
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate` - Install dependencies:
pip install -r requirements.txt - (Optional but Recommended) Set Environment Variable:
Set theOPENAI_API_KEYenvironment variable with your OpenAI key instead of hardcoding it in the script. How you set this depends on your operating system.
Configuration (for Cline MCP Client)
To make this server available to your AI assistant (like Cline), add its configuration to your MCP settings file (e.g., cline_mcp_settings.json).
Find the mcpServers object in your settings file and add the following entry:
Important: Replace C:/path/to/your/cloned/repo/ with the correct absolute path to where you cloned this repository on your machine. Ensure the path separator is correct for your operating system (e.g., use backslashes \ on Windows). If you set the API key via environment variable, you can remove it from the script and potentially add it to the env section here if your MCP client supports it.
Running the Server
You don’t typically need to run the server manually. The MCP client (like Cline) will automatically start the server using the command and args specified in the configuration file when one of its tools is called for the first time.
If you want to test it manually (ensure dependencies are installed and API key is available):
python openai_image_mcp.py
Usage
The AI assistant interacts with the server using the generate_image and edit_image tools. Images are saved within an ai-images subdirectory created where the openai_image_mcp.py script is located. The tools return the absolute path to the saved image upon success.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










