
by EverArt
Image generation server for Claude Desktop using EverArt's API.
Updated 6 days ago
Official
npx @mintlify/mcp add everart-ai --client claude
Install
npm install
export EVERART_API_KEY=your_key_here
Parameters:
{
prompt: string, // Image description
model?: string, // Model ID (default: "207910310772879360")
image_count?: number // Number of images (default: 1)
}
Models:
- 5000: FLUX1.1 (standard)
- 9000: FLUX1.1-ultra
- 6000: SD3.5
- 7000: Recraft-Real
- 8000: Recraft-Vector
All images generated at 1024x1024.
Sample usage:
const result = await client.callTool({
name: "generate_image",
arguments: {
prompt: "A cat sitting elegantly",
model: "7000",
image_count: 1
}
});
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/...
You can also click the URL above to view the image again.
Available tools
generate_image
Generates images with multiple model options. Opens result in browser and returns URL.