Generate images MCP server
A Model Context Protocol server for generating images
Overview
Generate Images MCP Server is a Model Context Protocol server designed for generating images, compatible with OpenAI's DALL-E model API calls.
To use the server, set up the environment with Node.js, install dependencies, and run the server with the appropriate commands as specified in the documentation.
- Fully compatible API forwarding service for OpenAI and other large language models. - Supports multiple image generation models including MidJourney and Flux. - Easy setup and configuration for development environments.
- Generating images based on textual descriptions using DALL-E.
- Integrating with various AI models for creative projects.
- Developing applications that require image generation capabilities.
Add to your AI client
Use these steps to connect Generate images MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"generate-image-mcp-server-tomocrystal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-generate-image-mcp-server-tomocrystal"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"generate-image-mcp-server-tomocrystal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-generate-image-mcp-server-tomocrystal"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"generate-image-mcp-server-tomocrystal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-generate-image-mcp-server-tomocrystal"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"generate-image-mcp-server-tomocrystal": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-generate-image-mcp-server-tomocrystal"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"generate-image-mcp-server-tomocrystal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-generate-image-mcp-server-tomocrystal"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"generate-image-mcp-server-tomocrystal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-generate-image-mcp-server-tomocrystal"
]
}
}
}FAQ
Is the server compatible with all operating systems?
Yes! It supports both Windows and MacOS.
How do I install the server?
You can install it by running `npm install` after setting up Node.js.
What is the license for this project?
The project is licensed under the MIT License.