A MCP server for Azure OpenAI DALL-E 3 service to generate image from text.
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.
generate_imageGenerates images using AOAI DALL-E 3 with the following parameters:
prompt (required): Text description of the image to generatesize (optional): Image dimensions (default: 1024x1024). Available options:1024x10241792x10241024x1792quality (optional): Image quality (default: hd). Available options:
standardhdstyle (optional): Image style (default: natural). Available options:
vividnaturaldownload_imageDownloads generated images to local storage:
imageUrl (required): URL of the image to downloadlocalPath (required): Local directory path for savingfileName (required): Name for the downloaded fileThe 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.npm install
npm run build
{
"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>"
}
}
}
}