1. Conduid
  2. Developer Tools
  3. Azure OpenAI DALL-E 3 MCP Server
MCP server · Developer Tools

Azure OpenAI DALL-E 3 MCP Server

E 3 service to generate image from text.

Unclaimed MIT last commit a year ago content
45Fair

Scored 3 months ago · breakdown

About Azure OpenAI DALL-E 3 MCP Server

Azure OpenAI DALL-E 3 MCP Server is an MCP server published by jacwu in the Developer Tools category: e 3 service to generate image from text. It has been installed 0 times through Conduid.

The repository has 4 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-server-aoai-dalle3

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Azure OpenAI DALL-E 3 MCP Server

Powered by Claude · Grounded in docs

I know everything about Azure OpenAI DALL-E 3 MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Azure OpenAI DALL-E 3 MCP Server

An Azure OpenAI DALL-E 3 integration server implementing the Model Context Protocol (MCP). This server provides a bridge between Azure OpenAI's DALL-E 3 image generation capability and MCP clients.

Available Tools

generate_image

Generates images using AOAI DALL-E 3 with the following parameters:

  • prompt (required): Text description of the image to generate
    • size (optional): Image dimensions (default: 1024x1024). Available options:
    • 1024x1024
    • 1792x1024
    • 1024x1792
  • quality (optional): Image quality (default: hd). Available options:
    • standard
    • hd
  • style (optional): Image style (default: natural). Available options:
    • vivid
    • natural

download_image

Downloads generated images to local storage:

  • imageUrl (required): URL of the image to download
  • localPath (required): Local directory path for saving
  • fileName (required): Name for the downloaded file

Environment Variables

The following environment variables must be set to configure the server:

  • AZURE_OPENAI_ENDPOINT: The endpoint URL for your Azure OpenAI resource. You can find this in the Azure portal under your OpenAI resource's "Keys and Endpoint" section.
  • AZURE_OPENAI_API_KEY: The API key for your Azure OpenAI resource. This is also available in the "Keys and Endpoint" section.
  • AZURE_OPENAI_DEPLOYMENT_NAME (optional, default: "dalle3"): The name of the DALL-E 3 deployment in your Azure OpenAI resource.
  • OPENAI_API_VERSION (optional, default: "2024-02-15-preview"): The API version to use. Ensure this matches the version supported by your Azure OpenAI resource.

Build

  1. Install dependencies:
npm install
  1. Build the server:
npm run build

MCP Client Configuration

{
  "mcpServers": {
    "dalle3": {
      "command": "node",
      "args": [
        "path/to/mcp-server-aoai-dalle3/build/index.js"
      ],
      "env": {
        "AZURE_OPENAI_ENDPOINT": "<endpoint>",
        "AZURE_OPENAI_API_KEY": "<key>",
        "AZURE_OPENAI_DEPLOYMENT_NAME": "<deployment>"
      }
    }
  }
}

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Azure OpenAI DALL-E 3 MCP Server

How do I install Azure OpenAI DALL-E 3 MCP Server?

Run npx mcp-server-aoai-dalle3, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Azure OpenAI DALL-E 3 MCP Server safe to use with an AI agent?

Its trust score is 45 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Azure OpenAI DALL-E 3 MCP Server still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.