Overview
EverArt MCP Server provides a standardized interface for generating images through EverArt's API. This implementation allows AI assistants to create high-quality visuals from text prompts using multiple model options. The server automatically displays generated images in the browser and returns accessible URLs, making it a powerful tool for visual content creation within AI workflows.
Features
- Multiple Model Support: Access to various image generation models with different styles and capabilities
- Customizable Image Count: Generate single or multiple images per request
- Automatic Browser Display: View generated images instantly in your default browser
- URL Accessibility: Get permanent links to all generated images
- Consistent Resolution: All images generated at 1024x1024 resolution
- Simple Parameter Set: Basic prompt-based generation with minimal configuration needed
- Flexible Deployment: Support for both Docker and NPX installation methods
Use cases
- Creating custom illustrations for presentations and documents
- Generating concept art for creative projects
- Visualizing product designs and prototypes
- Producing custom imagery for marketing materials
- Enhancing educational content with visual aids
- Supporting content creation for blogs and social media
- Visualizing architectural and interior design concepts
- Creating custom avatars and character designs
- Developing mood boards and visual references
Tools
- generate_image: Creates images based on text prompts with options for model selection and image count
Integration complexity
2/5 - Relatively straightforward setup requiring only an API key and basic configuration.
Setup Guide
Prerequisites
- Obtain an EverArt API key for authentication
Docker Configuration
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"everart": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"EVERART_API_KEY",
"mcp/everart"
],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
NPX Configuration
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"everart": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-everart"
],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
Building From Source
To build a Docker image:
docker build -t mcp/everart -f src/everart/Dockerfile .
Model Selection Options
- 5000: FLUX1.1 (standard)
- 9000: FLUX1.1-ultra
- 6000: SD3.5
- 7000: Recraft-Real
- 8000: Recraft-Vector