PluginBench
MCP Server

io.github.qmediat/ideogram-mcp MCP Server

io.github.qmediat/ideogram-mcp

What is the io.github.qmediat/ideogram-mcp MCP server?

Ideogram V3 API — generate, edit, remix, reframe, replace background, upscale images

How to install io.github.qmediat/ideogram-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • IDEOGRAM_API_KEY
    required
    secret

    Your Ideogram API key (get one at https://ideogram.ai/manage-api)

  • IDEOGRAM_OUTPUT_DIR

    Directory for saved images (default: /tmp/ideogram-output)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "ideogram-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@qmediat.io/ideogram-mcp"
      ],
      "env": {
        "IDEOGRAM_API_KEY": "<YOUR_IDEOGRAM_API_KEY>",
        "IDEOGRAM_OUTPUT_DIR": "<YOUR_IDEOGRAM_OUTPUT_DIR>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "ideogram-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@qmediat.io/ideogram-mcp"
      ],
      "env": {
        "IDEOGRAM_API_KEY": "<YOUR_IDEOGRAM_API_KEY>",
        "IDEOGRAM_OUTPUT_DIR": "<YOUR_IDEOGRAM_OUTPUT_DIR>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "ideogram-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@qmediat.io/ideogram-mcp"
      ],
      "env": {
        "IDEOGRAM_API_KEY": "<YOUR_IDEOGRAM_API_KEY>",
        "IDEOGRAM_OUTPUT_DIR": "<YOUR_IDEOGRAM_OUTPUT_DIR>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "ideogram-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@qmediat.io/ideogram-mcp"
      ],
      "env": {
        "IDEOGRAM_API_KEY": "<YOUR_IDEOGRAM_API_KEY>",
        "IDEOGRAM_OUTPUT_DIR": "<YOUR_IDEOGRAM_OUTPUT_DIR>"
      }
    }
  }
}
Claude Code
claude mcp add ideogram-mcp --env IDEOGRAM_API_KEY=<YOUR_IDEOGRAM_API_KEY> --env IDEOGRAM_OUTPUT_DIR=<YOUR_IDEOGRAM_OUTPUT_DIR> -- npx -y @qmediat.io/ideogram-mcp

Related MCP servers

Gemini 2M context cache for Claude Code — persistent; repeat queries ~8x faster, ~4x cheaper.

View repository →