Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server that provides tools to generate, edit, and create variations of images using OpenAI DALL-E models.

README.md

DALL-E MCP Server

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 2
  • edit_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

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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.