Stay Updated
Subscribe to our newsletter for the latest news and updates about MCP servers
Subscribe to our newsletter for the latest news and updates about MCP servers
Image generation server to create AI-powered high-quality images using multiple models
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.
2/5 - Relatively straightforward setup requiring only an API key and basic 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"
}
}
}
}
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"everart": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-everart"
],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
To build a Docker image:
docker build -t mcp/everart -f src/everart/Dockerfile .