📦
Mcp.OpenAI.ImageGeneration
MCP server for OpenAI image generation API.
0 installs
Trust: 34 — Low
Content
Ask AI about Mcp.OpenAI.ImageGeneration
Powered by Claude · Grounded in docs
I know everything about Mcp.OpenAI.ImageGeneration. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
MCP OpenAI Image Generation
MCP server for OpenAI image generation API. This makes AI agent can generate image to specified path.
Installation
- Make sure .NET SDK is installed. If not, you can download from https://dotnet.microsoft.com/download
- Clone this project. (replace [PROJECT PATH] to yours)
git clone https://github.com/KichangKim/Mcp.OpenAI.ImageGeneration.git [PROJECT PATH] - Add MCP server settings to your AI agent application. (replace [PROJECT PATH] and [YOUR_OPENAPI_KEY] to yours)
{ "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
