Generate Images with EverArt API
MCP connector that generates AI images through EverArt's API using FLUX, Stable Diffusion 3.5, or Recraft models.
Why it matters
Leverage the EverArt API to generate high-quality images using multiple state-of-the-art models. This asset integrates with your existing tools to provide a seamless image generation experience.
Outcomes
What it gets done
Generate images based on text prompts.
Select from various image generation models including FLUX and Stable Diffusion.
Configure API key and model preferences for image generation.
Receive image URLs upon successful generation.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-everart | bash Capabilities
Tools your agent gets
Generates images using EverArt's API with multiple model options and returns URL.
Overview
EverArt MCP
The EverArt MCP server lets Claude generate images through EverArt's API and its generate_image tool, supporting five models -- FLUX1.1, FLUX1.1-ultra, Stable Diffusion 3.5, Recraft-Real, and Recraft-Vector -- all at 1024x1024 resolution. Use it when you want Claude to produce an image from a text prompt in a specific style or model. It requires an EverArt API key.
What it does
The EverArt MCP server lets Claude generate images through EverArt's API using its generate_image tool -- generate_image(prompt: string, model?: string, image_count?: number): GenerationResult. It supports five models: FLUX1.1 (standard), FLUX1.1-ultra (high-quality), SD3.5 (Stable Diffusion 3.5), Recraft-Real (realistic style), and Recraft-Vector (vector art style), each identified by a numeric model ID. Every image is generated at 1024x1024 resolution, and a successful call opens the result in your browser and returns the image URL alongside the model and prompt used.
When to use - and when NOT to
Use it when you want to turn a plain-language prompt into an image without leaving the conversation -- for example asking Claude to "generate an image of a futuristic city at sunset using the FLUX1.1-ultra model." It needs an EverArt account and API key before it can run anything, so it is not usable out of the box; sign up at EverArt first to get a key.
Capabilities
- Generate one or more images from a text prompt (
image_count) - Choose a specific model, or fall back to the default model ID (
207910310772879360) - Opens the generated image in your browser and returns its URL
How to install
Install via npm install -g @modelcontextprotocol/server-everart, then add it to your Claude Code settings with your EverArt API key:
{
"mcpServers": {
"everart": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everart"],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
Who it's for
Anyone who wants Claude to turn a text description into a finished image and get back the generation details -- the model used, the prompt, and the image URL -- instead of switching to a separate image tool.
Source README
The EverArt MCP server enables AI image generation using EverArt's API, supporting multiple state-of-the-art image generation models.
Installation
npm install -g @modelcontextprotocol/server-everart
Configuration
Add to your Claude Code settings:
{
"mcpServers": {
"everart": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everart"],
"env": {
"EVERART_API_KEY": "your_key_here"
}
}
}
}
Available Tools
generate_image
Generates images with multiple model options. Opens result in browser and returns URL.
generate_image(
prompt: string,
model?: string,
image_count?: number
): GenerationResult
Parameters:
prompt- Image descriptionmodel- Model ID (optional, default: "207910310772879360")image_count- Number of images to generate (default: 1)
Supported Models
| Model ID | Name | Description |
|---|---|---|
| 5000 | FLUX1.1 | Standard FLUX model |
| 9000 | FLUX1.1-ultra | High-quality FLUX |
| 6000 | SD3.5 | Stable Diffusion 3.5 |
| 7000 | Recraft-Real | Realistic style |
| 8000 | Recraft-Vector | Vector art style |
All images are generated at 1024x1024 resolution.
Getting an API Key
Sign up at EverArt to obtain an API key.
Usage Example
Claude, generate an image of a futuristic city at sunset
using the FLUX1.1-ultra model.
Response Format
Image generated successfully!
The image has been opened in your default browser.
Generation details:
- Model: 7000
- Prompt: "A cat sitting elegantly"
- Image URL: https://storage.googleapis.com/...
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.