Overview
Ideogram MCP Server is a Model Context Protocol (MCP) server that provides image generation capabilities using the Ideogram API.
To use the Ideogram MCP Server, install the necessary dependencies, set up environment variables, build the project, and then utilize the generate_image tool to create images based on prompts.
- Image generation based on prompts - Customizable parameters including aspect ratio, model selection, and style type - Supports multiple image generation options
- Generating artistic images based on user-defined prompts.
- Creating images for marketing materials or social media posts.
- Assisting developers in generating visuals for applications.
Add to your AI client
Use these steps to connect 🎨 Ideogram MCP Server 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": {
"sunwood-ai-labs-ideagram-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sunwood-ai-labs-ideagram-mcp-server-mcp-mirror"
]
}
}
}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": {
"sunwood-ai-labs-ideagram-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sunwood-ai-labs-ideagram-mcp-server-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"sunwood-ai-labs-ideagram-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sunwood-ai-labs-ideagram-mcp-server-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"sunwood-ai-labs-ideagram-mcp-server-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sunwood-ai-labs-ideagram-mcp-server-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"sunwood-ai-labs-ideagram-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sunwood-ai-labs-ideagram-mcp-server-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"sunwood-ai-labs-ideagram-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sunwood-ai-labs-ideagram-mcp-server-mcp-mirror"
]
}
}
}FAQ
Can I generate any type of image?
Yes! You can generate images based on any prompt you provide, with various customization options.
Is there a limit to the number of images I can generate?
You can generate between 1 to 8 images at a time.
How do I set up the server?
Follow the setup instructions in the README, including installing dependencies and configuring environment variables.