everart
4.3
EverArt MCP Server is an image generation server for Claude Desktop using EverArt's API.
The EverArt MCP Server is designed to facilitate image generation through the EverArt API, specifically for use with Claude Desktop. It provides a seamless integration for users to generate images using various models, with the ability to configure and deploy the server using Docker or NPX. The server supports multiple platforms, including VS Code, and offers a straightforward setup process. Users can generate images by specifying prompts and selecting from a range of model options, with results being easily accessible via a URL.
Features
- Seamless integration with Claude Desktop for image generation.
- Supports multiple deployment methods including Docker and NPX.
- Configurable with various image generation models.
- Easy setup and configuration for VS Code users.
- Generates high-resolution images at 1024x1024.
MCP Tools
- generate_image: Generates images with multiple model options. Opens result in browser and returns URL.
Usage with Different Platforms
Claude Desktop Docker
{
"mcpServers": {
"everart": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "EVERART_API_KEY", "mcp/everart"],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
Claude Desktop NPX
{
"mcpServers": {
"everart": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everart"],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
VS Code Docker
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "everart_api_key",
"description": "EverArt API Key",
"password": true
}
],
"servers": {
"everart": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "EVERART_API_KEY", "mcp/everart"],
"env": {
"EVERART_API_KEY": "${input:everart_api_key}"
}
}
}
}
}
VS Code NPX
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "everart_api_key",
"description": "EverArt API Key",
"password": true
}
],
"servers": {
"everart": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everart"],
"env": {
"EVERART_API_KEY": "${input:everart_api_key}"
}
}
}
}
}