DALL E Server
БесплатноНе проверенAn MCP server that provides tools to generate, edit, and create variations of images using OpenAI DALL-E models.
Описание
An MCP server that provides tools to generate, edit, and create variations of images using OpenAI DALL-E models.
README
A Model Context Protocol (MCP) server that exposes OpenAI DALL-E image generation capabilities as MCP tools.
Features
generate_image— Generate images from text prompts using DALL-E 3 or DALL-E 2edit_image— Edit existing images with a text prompt and optional mask (DALL-E 2)create_image_variation— Create variations of an existing image (DALL-E 2)
Prerequisites
- Node.js >= 18
- An OpenAI API key with access to DALL-E
Installation
npm install
npm run build
Configuration
Copy .env.example to .env and set your OpenAI API key:
cp .env.example .env
# Edit .env and set OPENAI_API_KEY
Usage
Run directly
OPENAI_API_KEY=sk-... npm start
Configure with Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"dall-e": {
"command": "node",
"args": ["/path/to/dall-e-mcp/dist/index.js"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}
Configure with Claude Code
{
"mcpServers": {
"dall-e": {
"command": "node",
"args": ["/path/to/dall-e-mcp/dist/index.js"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}
Tools
generate_image
Generate an image from a text prompt.
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt |
string | Yes | Text description of the desired image |
model |
dall-e-3 | dall-e-2 |
No | Model to use (default: dall-e-3) |
size |
string | No | Image dimensions (default: 1024x1024) |
quality |
standard | hd |
No | Quality — DALL-E 3 only (default: standard) |
style |
vivid | natural |
No | Style — DALL-E 3 only (default: vivid) |
n |
number | No | Number of images, DALL-E 2 only (default: 1) |
DALL-E 3 sizes: 1024x1024, 1792x1024, 1024x1792
DALL-E 2 sizes: 256x256, 512x512, 1024x1024
edit_image
Edit an existing image using a text prompt (DALL-E 2 only).
| Parameter | Type | Required | Description |
|---|---|---|---|
image_url |
string | Yes | URL of the PNG to edit (max 4MB, must be square) |
mask_url |
string | No | URL of the mask PNG (transparent = edit area) |
prompt |
string | Yes | Description of the desired edit |
size |
string | No | Output size (default: 1024x1024) |
n |
number | No | Number of edited images (default: 1) |
create_image_variation
Create variations of an image (DALL-E 2 only).
| Parameter | Type | Required | Description |
|---|---|---|---|
image_url |
string | Yes | URL of the PNG to vary (max 4MB, must be square) |
size |
string | No | Output size (default: 1024x1024) |
n |
number | No | Number of variations (default: 1) |
Project Structure
dall-e-mcp/
├── src/
│ ├── index.ts # MCP server entry point
│ └── tools/
│ ├── generate-image.ts # generate_image tool
│ ├── edit-image.ts # edit_image tool
│ └── create-variation.ts # create_image_variation tool
├── docs/
│ └── issues/ # Issue & ticket documentation
├── dist/ # Compiled output (after build)
├── package.json
├── tsconfig.json
└── .env.example
Issues & Tickets
See docs/issues/ for tracked issues and feature requests.
License
MIT
Установить DALL E Server в Claude Desktop, Claude Code, Cursor
unyly install dall-e-mcp-serverСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add dall-e-mcp-server -- npx -y github:ichbinmartin/dall-e-mcpFAQ
DALL E Server MCP бесплатный?
Да, DALL E Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для DALL E Server?
Нет, DALL E Server работает без API-ключей и переменных окружения.
DALL E Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить DALL E Server в Claude Desktop, Claude Code или Cursor?
Открой DALL E Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare DALL E Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
