Image Generator MCP Server
Allows generating images from text prompts using OpenAI's image generation models (e.g., DALL-E). Users can specify prompt, aspect ratio, and quality.
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 Generator MCP ServerGenerate an image of a sunset over mountains."
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 Generator MCP Server
A Laravel app that exposes AI image generation as a Model Context Protocol (MCP) tool, built with laravel/mcp and laravel/ai. Any MCP-compatible client — Claude, Claude Code, Cursor, ChatGPT, etc. — can call it to generate an image from a text prompt.
What it does
The server registers one tool, generate-image. When an MCP client calls it with a prompt, the tool passes the prompt to the Laravel AI SDK, which generates the image via OpenAI, Gemini, or xAI (whichever provider you've configured), stores the result, and returns the image (or a link to it) back to the client.
Related MCP server: Gemini Image MCP
Requirements
PHP 8.2+, Laravel 12.x or 13.x
An API key for at least one supported image provider
Installation
composer require laravel/mcp laravel/ai
php artisan vendor:publish --tag=ai-routes
php artisan vendor:publish --provider="Laravel\Ai\AiServiceProvider"
php artisan migrateAdd a provider key to .env:
OPENAI_API_KEY=
GEMINI_API_KEY=
XAI_API_KEY=The server is registered in routes/ai.php:
use App\Mcp\Servers\ImageGeneratorServer;
use Laravel\Mcp\Facades\Mcp;
Mcp::web('/mcp/image-generator', ImageGeneratorServer::class);How to use it
Point any MCP client at the server's URL:
{
"mcpServers": {
"image-generator": {
"url": "https://your-app.test/mcp/image-generator"
}
}
}Once connected, just ask the client to generate an image — for example, "generate an image of a private jet" — and it will call the generate-image tool with your prompt and return the result. The tool accepts:
prompt(required) — what to generateaspect_ratio—square,portrait, orlandscape(defaultsquare)quality—low,medium, orhigh(defaultmedium)
If the endpoint requires authentication, add a bearer token to the client config:
{
"mcpServers": {
"image-generator": {
"url": "https://your-app.test/mcp/image-generator",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}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.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables image generation using Gemini native models, supporting both single prompts and batch processing via a file-based queue. It allows for detailed configuration of aspect ratios and models using YAML frontmatter across various MCP-enabled clients.Last updated324MIT
- FlicenseBqualityCmaintenanceEnables image generation and multi-turn editing sessions using the Gemini API within MCP-compatible environments. Users can create, modify, and configure images through natural language commands, supporting features like aspect ratio adjustments and session-based image transformations.Last updated5
- Alicense-qualityCmaintenanceEnables AI-powered image and video generation using Higgsfield AI models through MCP-compatible clients like Claude Desktop and Perplexity.Last updated282MIT
- Alicense-qualityDmaintenanceEnables AI image generation via multiple providers (Yunwu, Gemini) with customizable aspect ratios, resolutions, and output settings, seamlessly integrating with MCP-compatible clients.Last updated15MIT
Related MCP Connectors
MCP server for Flux AI image generation
MCP server for NanoBanana AI image generation and editing
MCP server for Grok Imagine AI video generation
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/ShushannaKarapetyan/MCPImageGenerator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server