image-forge-mcp
Integrates with Google Gemini image generation API for text-to-image tasks using Gemini models.
Integrates with OpenAI's DALL-E (2/3) and GPT-Image-1 models for text-to-image generation, image editing, variation, and analysis.
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-forge-mcpGenerate a photorealistic image of a sunset over a futuristic city"
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-forge-mcp
A powerful MCP (Model Context Protocol) server for image processing, supporting multiple AI providers including OpenAI, Google Gemini, Ideogram, and any OpenAI-compatible relay/proxy endpoints.
Features
Multi-provider support: OpenAI (DALL-E 2/3, GPT-Image-1), Google Gemini, Ideogram V3, and any OpenAI-compatible endpoint
Relay station support: Configure custom
baseUrlto route through any proxy or relay service4 core operations: Text-to-image, image editing, image variation, and image analysis
Flexible configuration: JSON config with environment variable interpolation (
${ENV_VAR})Auto provider routing: Automatically selects the best available provider based on capability
Async task support: Long-running tasks can be submitted async and polled later
Related MCP server: gemini-image-mcp
MCP Tools
Tool | Description |
| Generate images from text prompts |
| Edit images with inpainting and masks |
| Create variations of existing images |
| Analyze and describe image content |
| Check status of async tasks |
Installation
1. Clone and build
git clone <repo>
cd image-forge-mcp
npm install
npm run build2. Configure
cp config.example.json config.jsonEdit config.json and set your API keys (or use environment variables):
{
"providers": [
{
"id": "openai-main",
"type": "openai_compatible",
"apiKey": "${OPENAI_API_KEY}",
"baseUrl": "https://api.openai.com",
...
}
]
}3. Set environment variables
export OPENAI_API_KEY=sk-...
export GEMINI_API_KEY=AIza...
export IDEOGRAM_API_KEY=...4. Register with Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"image-forge": {
"command": "node",
"args": ["/absolute/path/to/image-forge-mcp/dist/index.js"],
"env": {
"OPENAI_API_KEY": "sk-...",
"GEMINI_API_KEY": "AIza...",
"IDEOGRAM_API_KEY": "...",
"IMAGE_FORGE_CONFIG": "/absolute/path/to/image-forge-mcp/config.json"
}
}
}
}Restart Claude Desktop after editing.
Using with Relay/Proxy Services
To use a relay station (e.g., api2d, openrouter, or any OpenAI-compatible proxy):
{
"id": "my-relay",
"type": "openai_compatible",
"apiKey": "${RELAY_API_KEY}",
"baseUrl": "https://your-relay-station.com",
"models": {
"textToImage": ["dall-e-3", "flux-pro-1.1", "gpt-image-1"],
"imageAnalyze": ["gpt-4o-mini"]
},
"openaiCompat": {
"authMode": "bearer"
}
}Some relay stations use a different auth header. Use authMode: "api-key-header" with apiKeyHeaderName for those.
Configuration Reference
Environment Variables
Variable | Description | Default |
| Path to config.json |
|
| OpenAI API key | - |
| Google AI Studio API key | - |
| Ideogram API key | - |
| Log level (debug/info/warn/error) |
|
| HTTP proxy for outbound requests | - |
Provider Types
openai_compatible: Supports DALL-E, GPT-Image, and any OpenAI-format APIgemini: Google Gemini image generation APIideogram: Ideogram V3 API
Supported Models (Phase 1)
OpenAI-compatible:
gpt-image-1— Latest GPT image modeldall-e-3— DALL-E 3 (text-to-image only)dall-e-2— DALL-E 2 (supports edit + variation)Any model exposed by your relay station
Gemini:
gemini-2.0-flash-preview-image-generationgemini-3.1-pro-image-preview
Ideogram:
V_3— Ideogram V3V_3_TURBO— Ideogram V3 Turbo (faster)
Example Usage in Claude
Generate an image of a sunset over Tokyo with cherry blossoms, photorealistic, 16:9
Edit this image [attach image] to add a rainbow in the sky
What's in this image? [attach image]
Create a variation of this image [attach image] with a warmer color toneLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Cheng77c/image-forge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server