drio
Open app

imagegen-go MCP 服务器

Source

MCP server which will trigger OpenAI to generate image

Catalog onlyCatalog onlySTDIO

Overview

imagegen-go is a server application that triggers OpenAI's image generation capabilities, allowing users to create images based on textual descriptions.

To use imagegen-go, set up the server and send requests with the desired image prompts to generate images using OpenAI's API.

  • Integration with OpenAI for image generation - Ability to handle multiple image requests - Customizable parameters for image creation
  1. Generating unique artwork based on user descriptions.
  2. Creating images for marketing materials.
  3. Assisting developers in generating visuals for applications.

Add to your AI client

Use these steps to connect imagegen-go MCP 服务器 in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "imagegen-go-shawnzxx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-imagegen-go-shawnzxx"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "imagegen-go-shawnzxx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-imagegen-go-shawnzxx"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "imagegen-go-shawnzxx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-imagegen-go-shawnzxx"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "imagegen-go-shawnzxx": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-imagegen-go-shawnzxx"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "imagegen-go-shawnzxx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-imagegen-go-shawnzxx"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "imagegen-go-shawnzxx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-imagegen-go-shawnzxx"
      ]
    }
  }
}

FAQ

What programming language is imagegen-go written in?

imagegen-go is written in Go.

Is there a cost associated with using imagegen-go?

The cost depends on the usage of OpenAI's API for image generation.

Can I customize the images generated?

Yes! You can customize the prompts and parameters to influence the generated images.