src_everart

src_everart

by modelcontextprotocol
Image generation server for Claude Desktop using EverArt's API.

EverArt MCP Server for Claude Desktop

Overview

The EverArt MCP Server is an image generation server designed for Claude Desktop, leveraging EverArt's API to create high-quality images based on user prompts. This server supports multiple models and provides seamless integration with Claude Desktop for enhanced creative workflows.

Installation

To install the EverArt MCP Server, run the following commands:

npm install
export EVERART_API_KEY=your_key_here

Configuration

To configure the EverArt MCP Server for use with Claude Desktop, add the following settings to your Claude Desktop configuration file.

Docker Configuration

{
  "mcpServers": {
    "everart": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "EVERART_API_KEY", "mcp/everart"],
      "env": {
        "EVERART_API_KEY": "your_key_here"
      }
    }
  }
}

NPX Configuration

{
  "mcpServers": {
    "everart": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everart"],
      "env": {
        "EVERART_API_KEY": "your_key_here"
      }
    }
  }
}

Tools

generate_image

The generate_image tool allows users to generate images using various models. The result is opened in the browser, and the image URL is returned.

Parameters

{
  prompt: string,       // Image description
  model?: string,       // Model ID (default: "207910310772879360")
  image_count?: number  // Number of images (default: 1)
}

Supported Models

  • 5000: FLUX1.1 (standard)
  • 9000: FLUX1.1-ultra
  • 6000: SD3.5
  • 7000: Recraft-Real
  • 8000: Recraft-Vector

All images are generated at 1024x1024 resolution.

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.

Building with Docker

To build the EverArt MCP Server using Docker, run the following command:

docker build -t mcp/everart -f src/everart/Dockerfile .

Features & Capabilities

Categories
mcp_server model_context_protocol typescript docker api_integration image_generation claude

Implementation Details

Stats

0 Views
27 GitHub Stars

Repository Info

modelcontextprotocol Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300
SunMonTueWedThuFriSat
303112345678910111213141516171819202122232425262728293012345678910
:
PM
SunMonTueWedThuFriSat
303112345678910111213141516171819202122232425262728293012345678910
:
PM