Content
# MCP OpenAI Image Generation
MCP server for OpenAI image generation API. This makes AI agent can generate image to specified path.
## Installation
1. Make sure .NET SDK is installed. If not, you can download from https://dotnet.microsoft.com/download
2. Clone this project. (replace [PROJECT PATH] to yours)
```
git clone https://github.com/KichangKim/Mcp.OpenAI.ImageGeneration.git [PROJECT PATH]
```
3. Add MCP server settings to your AI agent application. (replace [PROJECT PATH] and [YOUR_OPENAPI_KEY] to yours)
```json
{
"servers": {
"mcp-openai-image-generation": {
"command": "dotnet",
"args": [
"run",
"--project",
"[PROJECT PATH]"
],
"env": {
"OPENAI_API_KEY": "[YOUR_OPENAPI_KEY]"
}
}
}
}
```
## Available Tools
- CreateImage : Creates an image given a prompt. https://platform.openai.com/docs/api-reference/images/create
- CreateImageEdit : Creates an edited or extended image given one or more source images and a prompt. https://platform.openai.com/docs/api-reference/images/createEdit
Connection Info
You Might Also Like
markitdown
Python tool for converting files and office documents to Markdown.
OpenAI Whisper
OpenAI Whisper MCP Server - 基于本地 Whisper CLI 的离线语音识别与翻译,无需 API Key,支持...
oh-my-opencode
Background agents · Curated agents like oracle, librarians, frontend...
kreuzcrawl
High-performance web crawling engine with bindings for 11 languages
skills-compat-manager
Cross-platform compatibility layer for AI agent skills — pre-flight...
open-claude-in-chrome
Claude in Chrome, reverse-engineered and open-source. No domain blocklist....