image-gen-mcp
Generates images using OpenAI's gpt-image-2 model, allowing text-to-image generation and editing with reference images and masks, saving directly to specified paths.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@image-gen-mcpgenerate a 1024x1024 banner with a sunset and mountains, save as public/banner.png"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
image-gen-mcp
An MCP server that lets Claude Code generate real images to use in your projects (banners, icons, backgrounds, textures, etc.) with OpenAI gpt-image-2, and save them straight to a path you specify. It is meant for producing production assets — not for mocking up UI designs.
ภาษาไทย: ดู README.th.md
Tools
generate_image
Generate a new image from a text prompt and write it to a file.
param | values | default |
| text description of the image | — |
| where to save, e.g. | — |
|
|
|
|
|
|
|
| inferred from |
|
|
|
| 0-100 (jpeg/webp only) | — |
| 1-10 (if >1, saves |
|
| override the model |
|
edit_image
Edit / build on existing images. Pass 1-16 reference images, plus an optional mask for inpainting.
param | values |
| what to edit / create |
| 1-16 source (reference) image paths |
| where to save the result |
| (optional) mask for inpainting — transparent areas of the mask are what gets edited; must match the first image's dimensions |
+ |
Both tools return only { path, bytes, size, quality, ... } — never the raw image bytes (to avoid flooding the agent's context). A relative output_path is resolved against the calling project's CWD, and parent directories are created automatically.
Related MCP server: openai-imagegen-mcp
Authentication
Two modes. IMAGE_GEN_AUTH_MODE picks between them (auto by default: an API key in the environment wins, otherwise a stored login is used).
api_key — OPENAI_API_KEY (recommended)
Calls api.openai.com/v1. Every parameter above works. Billed to your API account.
chatgpt — browser login
npx image-gen-mcp login # opens a browser; also `status` and `logout`Signs in with your ChatGPT account and generates on your ChatGPT plan quota instead of API credit. If you call a tool with no credential configured, the server asks the MCP client to open the same login URL (URL-mode elicitation) and retries the call once you're done — Claude Code supports this; claude -p does not, so use the CLI there.
Tokens are stored in ~/.image-gen-mcp/auth.json (0600) and refreshed automatically. Codex's own ~/.codex/auth.json is never read or written — sharing one rotating refresh token between two tools logs both out.
This mode is a reduced feature set. It goes through chatgpt.com/backend-api/codex, which accepts only prompt, model, quality, background, always returns PNG, and silently ignores everything else. Rather than hand back an asset that quietly isn't what was asked for, the tools reject the unsupported parameters:
|
| |
| yes | rejected — dimensions come from the prompt; say "landscape"/"portrait"/"square" in it |
| yes | rejected — one image per call |
| png / jpeg / webp | png only |
| yes | rejected |
| yes | rejected |
| yes | rejected |
| yes | yes |
| yes | accepted, but not reliably honored — the response's actual |
Caveats. OpenAI publishes no OAuth flow for third-party apps: this reuses the login its own Codex CLI performs, including that client's ID and its two allow-listed loopback ports (1455/1457). It is undocumented, unsupported, and can break without notice. The resulting token is not accepted by the Platform API (GET /v1/models with one answers 403 Missing scopes: api.model.read), which is why the two modes talk to different hosts. api_key remains the supported path.
Install
cd image-gen-mcp
npm installConnect to Claude Code
For api_key mode, provide the key via the server's env block in your MCP config (no .env file required) — in a project .mcp.json or a user-scoped config. For chatgpt mode, drop the env block and run npx image-gen-mcp login instead:
{
"mcpServers": {
"image-gen": {
"command": "node",
"args": ["/Users/palm/Desktop/projects/custom-mcp/image-gen-mcp/src/index.mjs"],
"env": { "OPENAI_API_KEY": "sk-..." }
}
}
}Or add it via the CLI:
claude mcp add image-gen -e OPENAI_API_KEY=sk-... -- node /Users/palm/Desktop/projects/custom-mcp/image-gen-mcp/src/index.mjsTest
npm run selftest # real in-memory MCP round-trip with a fake client — no key/network needed
OPENAI_API_KEY=sk-... npm run smoke # one real API call (quality low) that verifies a valid PNGPricing (approx., gpt-image-2, 1024x1024)
low ~$0.006 · medium ~$0.053 · high ~$0.211 per image — start at medium, use high only for final assets.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides tools for generating and editing images using OpenAI's gpt-image-1 model via an MCP interface, enabling AI assistants to create and modify images based on text prompts.15Apache 2.0
- FlicenseNot gradedqualityDmaintenanceEnables image generation and editing via OpenAI's gpt-image-1 model, with options for saving, format control, and transparency.
- AlicenseNot gradedqualityBmaintenanceGenerates and edits images using OpenAI image models via MCP tools.MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to generate real images via multiple models (OpenAI, Gemini, Recraft, Seedream, Grok, Arrow) and returns usable file paths instead of base64 data.119MIT
Related MCP Connectors
Generate logos, social posts, app screenshots, comic panels & visual-novel assets from prompts.
Generate on-brand images from your AI agent: design, edit, and render templates over MCP.
Generate PWA icon sets and iOS splash screens from a text prompt or an existing image.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/k12club/image-gen-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server