/ Каталог / Песочница / EverArt
● Официальный modelcontextprotocol 🔑 Нужен свой ключ

EverArt

автор modelcontextprotocol · modelcontextprotocol/servers-archived

Generate images inside a Claude conversation — FLUX, SD3.5, Recraft — via EverArt's hosted models.

Reference MCP (now archived) exposing EverArt's image generation. One tool: generate_image with prompt + model ID. Good for one-off hero images, OG cards, and illustrations — not for production image pipelines.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

everart.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "everart": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-everart"
      ]
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "everart": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-everart"
      ]
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "everart": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-everart"
      ]
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "everart": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-everart"
      ]
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "everart",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-everart"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "everart": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-everart"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add everart -- npx -y @modelcontextprotocol/server-everart

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: EverArt

Generate OG / social card images for blog posts

👤 Content writers, solo devs running a blog ⏱ ~10 min beginner

Когда использовать: You just wrote a post and need a 1200×630 social card before publishing.

Предварительные требования
  • EverArt API key — everart.ai → account → API keys. Set as EVERART_API_KEY.
Поток
  1. Draft the prompt from the article
    My post is titled 'How we cut p99 latency in half'. Propose 3 image prompts that capture that visually — abstract, not literal, tech-editorial style.✓ Скопировано
    → 3 distinct prompt candidates
  2. Generate variations
    Use EverArt to generate image_count=3 for the prompt I pick. Use the FLUX1.1 model for cleaner composition.✓ Скопировано
    → 3 URLs returned
  3. Pick and save
    I like #2. Download it to ./public/og/<slug>.png via the filesystem MCP.✓ Скопировано
    → File saved locally, ready for deploy

Итог: A publish-ready OG card in 5 minutes, no design app open.

Подводные камни
  • Generated images have artifacts (weird text, extra fingers) — Skip prompts that ask for text in the image — let the model do abstraction and overlay your title via CSS/HTML
  • Aspect ratio doesn't match 1200×630 — The model outputs 1024×1024 by default — crop/resize via an image tool or accept square
Сочетать с: filesystem

Generate a landing page hero image

👤 Founders, marketers on tight budgets ⏱ ~15 min beginner

Когда использовать: Pre-launch landing page, no designer, stock photos feel generic.

Поток
  1. Describe the vibe
    My product is <description>. Target audience: <persona>. Propose 3 hero image directions that would feel authentic.✓ Скопировано
    → 3 direction briefs
  2. Generate 4 variants of direction #1
    Generate 4 images for: '<chosen prompt>'. Use Recraft for clean illustration style.✓ Скопировано
    → 4 URLs
  3. Iterate
    #2 is closest. Tweak: warmer palette, less cluttered background. Regenerate 3 more.✓ Скопировано
    → Refined set

Итог: A distinctive hero image for roughly the cost of a coffee.

Подводные камни
  • Over-iterating burns credits fast — Cap yourself at 2 iteration rounds; if nothing clicks, the direction is wrong — reset the brief

Комбинации

Сочетайте с другими MCP — эффект x10

everart + filesystem

Generate then save locally for commit

Generate an OG card for my 'caching' post, download the URL to ./public/og/caching.png.✓ Скопировано
everart + notion

Generate an illustration and embed it directly in a Notion page

Generate a banner image for the 'Onboarding' page and append it as an image block at the top.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
generate_image prompt: str, model?: str (default '207910310772879360'), image_count?: int (default 1) The only tool — generate N images matching a prompt 1 EverArt credit per image

Стоимость и лимиты

Во что обходится

Квота API
Depends on your EverArt plan — usually measured in credits
Токенов на вызов
Prompt text only (~100 tokens); generation time is the bottleneck
Деньги
Check everart.ai/pricing — typically cents per image
Совет
Generate image_count: 4 in one call instead of 4 separate calls — same cost, faster iteration

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: EVERART_API_KEY in env var
Исходящий трафик: Prompts and images to everart.ai

Устранение неполадок

Частые ошибки и исправления

401 Unauthorized

EVERART_API_KEY missing or invalid. Re-create at everart.ai and set in your MCP client config.

Проверить: curl -H "Authorization: Bearer $EVERART_API_KEY" https://api.everart.ai/v1/models
Image URL expires after a day

Download immediately with the filesystem MCP — don't rely on the hosted URL long-term.

Generation timeouts

Large image_count values can exceed client timeouts. Request 2 at a time and loop.

Альтернативы

EverArt в сравнении

АльтернативаКогда использоватьКомпромисс
Replicate MCPYou want broad model choice (FLUX, SDXL, hundreds of fine-tunes)More setup, more powerful, pay-per-second pricing
fal.ai MCPYou need fast inference and streamingSimilar pricing; slightly fewer models than Replicate
OpenAI DALL-E via APIAlready on OpenAI and want one billStricter content filters; narrower style range

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills