Skip to main content
Glama

SeedreamMCP

PyPI version PyPI downloads Python 3.10+ License: MIT MCP

Сервер Model Context Protocol (MCP) для генерации и редактирования изображений с помощью ИИ ByteDance Seedream через AceDataCloud API.

Создавайте и редактируйте изображения с помощью ИИ прямо из Claude, VS Code или любого клиента, совместимого с MCP.

Возможности

  • Генерация текста в изображение — создание высококачественных изображений по текстовым запросам (на китайском и английском языках)

  • Редактирование изображений — изменение существующих изображений с помощью ИИ (перенос стиля, изменение фона, виртуальная примерка)

  • Несколько моделей — Seedream v5.0 (флагман), v4.5, v4.0, v3.0 T2I, SeedEdit v3.0 I2I

  • Разрешение — 1K, 2K, 3K, 4K, адаптивное и пользовательские размеры

  • Контроль сидов (Seed) — воспроизводимые результаты с параметром сида (модели v3)

  • Последовательная генерация — создание связанных изображений в последовательности (v4.5/v4.0)

  • Потоковая передача — прогрессивная доставка изображений (v4.5/v4.0)

  • Отслеживание задач — мониторинг прогресса генерации и получение результатов

Related MCP server: Doubao Image/Video Generation MCP Server

Справочник инструментов

Инструмент

Описание

seedream_generate_image

Генерация изображения по текстовому запросу с использованием модели ByteDance Seedream.

seedream_edit_image

Редактирование или изменение существующих изображений с использованием модели ByteDance Seedream/SeedEdit.

seedream_get_task

Запрос статуса и результата задачи генерации или редактирования изображения Seedream.

seedream_get_tasks_batch

Запрос нескольких задач изображений Seedream одновременно.

seedream_list_models

Список всех доступных моделей Seedream с их возможностями и ценами.

seedream_list_sizes

Список всех доступных размеров изображений и вариантов разрешения для Seedream.

Быстрый старт

1. Получите ваш API-токен

  1. Зарегистрируйтесь на платформе AceDataCloud

  2. Перейдите на страницу документации API

  3. Нажмите "Acquire" (Получить), чтобы получить ваш API-токен

  4. Скопируйте токен для использования ниже

2. Используйте размещенный сервер (рекомендуется)

AceDataCloud предоставляет управляемый MCP-сервер — локальная установка не требуется.

Эндпоинт: https://seedream.mcp.acedata.cloud/mcp

Все запросы требуют токен Bearer. Используйте API-токен из шага 1.

Claude.ai

Подключитесь напрямую на Claude.ai с помощью OAuth — API-токен не требуется:

  1. Перейдите в Claude.ai Settings → Integrations → Add More

  2. Введите URL сервера: https://seedream.mcp.acedata.cloud/mcp

  3. Завершите процесс входа через OAuth

  4. Начните использовать инструменты в вашем диалоге

Claude Desktop

Добавьте в вашу конфигурацию (~/Library/Application Support/Claude/claude_desktop_config.json на macOS):

{
  "mcpServers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Cursor / Windsurf

Добавьте в вашу конфигурацию MCP (.cursor/mcp.json или .windsurf/mcp.json):

{
  "mcpServers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

VS Code (Copilot)

Добавьте в вашу конфигурацию MCP VS Code (.vscode/mcp.json):

{
  "servers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Или установите расширение Ace Data Cloud MCP для VS Code, которое объединяет все 15 MCP-серверов с настройкой в один клик.

JetBrains IDEs

  1. Перейдите в Settings → Tools → AI Assistant → Model Context Protocol (MCP)

  2. Нажмите AddHTTP

  3. Вставьте:

{
  "mcpServers": {
    "seedream": {
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Claude Code

Claude Code поддерживает MCP-серверы нативно:

claude mcp add seedream --transport http https://seedream.mcp.acedata.cloud/mcp \
  -h "Authorization: Bearer YOUR_API_TOKEN"

Или добавьте в .mcp.json вашего проекта:

{
  "mcpServers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Cline

Добавьте в настройки MCP Cline (.cline/mcp_settings.json):

{
  "mcpServers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Amazon Q Developer

Добавьте в вашу конфигурацию MCP:

{
  "mcpServers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Roo Code

Добавьте в настройки MCP Roo Code:

{
  "mcpServers": {
    "seedream": {
      "type": "streamable-http",
      "url": "https://seedream.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Continue.dev

Добавьте в .continue/config.yaml:

mcpServers:
  - name: seedream
    type: streamable-http
    url: https://seedream.mcp.acedata.cloud/mcp
    headers:
      Authorization: "Bearer YOUR_API_TOKEN"

Zed

Добавьте в настройки Zed (~/.config/zed/settings.json):

{
  "language_models": {
    "mcp_servers": {
      "seedream": {
        "url": "https://seedream.mcp.acedata.cloud/mcp",
        "headers": {
          "Authorization": "Bearer YOUR_API_TOKEN"
        }
      }
    }
  }
}

cURL Test

# Health check (no auth required)
curl https://seedream.mcp.acedata.cloud/health

# MCP initialize
curl -X POST https://seedream.mcp.acedata.cloud/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'

3. Или запустите локально (альтернатива)

Если вы предпочитаете запускать сервер на своей машине:

# Install from PyPI
pip install mcp-seedream-pro
# or
uvx mcp-seedream-pro

# Set your API token
export ACEDATACLOUD_API_TOKEN="your_token_here"

# Run (stdio mode for Claude Desktop / local clients)
mcp-seedream-pro

# Run (HTTP mode for remote access)
mcp-seedream-pro --transport http --port 8000

Claude Desktop (локально)

{
  "mcpServers": {
    "seedream": {
      "command": "uvx",
      "args": ["mcp-seedream-pro"],
      "env": {
        "ACEDATACLOUD_API_TOKEN": "your_token_here"
      }
    }
  }
}

Docker (самостоятельный хостинг)

docker pull ghcr.io/acedatacloud/mcp-seedream-pro:latest
docker run -p 8000:8000 ghcr.io/acedatacloud/mcp-seedream-pro:latest

Клиенты подключаются со своим собственным токеном Bearer — сервер извлекает токен из заголовка Authorization каждого запроса.

Доступные инструменты

Генерация и редактирование изображений

Инструмент

Описание

seedream_generate_image

Генерация изображения по текстовому запросу

seedream_edit_image

Редактирование или изменение существующих изображений с помощью ИИ

Управление задачами

Инструмент

Описание

seedream_get_task

Запрос статуса и результата одной задачи

seedream_get_tasks_batch

Запрос нескольких задач одновременно

Информация

Инструмент

Описание

seedream_list_models

Список доступных моделей с их возможностями

seedream_list_sizes

Список доступных вариантов размера изображения

Доступные модели

Модель

Версия

Тип

Лучше всего подходит для

Цена

doubao-seedream-5-0-260128

v5.0

Текст в изображение

Лучшее качество, новейший флагман, веб-поиск

~$0.040/изобр.

doubao-seedream-4-5-251128

v4.5

Текст в изображение

Предыдущий флагман, отличное качество

~$0.037/изобр.

doubao-seedream-4-0-250828

v4.0

Текст в изображение

Лучшее соотношение цены и качества, большинство задач

~$0.030/изобр.

doubao-seedream-3-0-t2i-250415

v3.0

Текст в изображение

Воспроизводимые результаты

~$0.038/изобр.

doubao-seededit-3-0-i2i-250628

v3.0

Изображение в изображение

Редактирование изображений

~$0.046/изобр.

Примеры использования

Генерация изображения по запросу

User: Create a photorealistic image of a cat in a garden

Claude: I'll generate that image for you.
[Calls seedream_generate_image with detailed prompt]
→ Returns task_id and image URL

Редактирование изображений

User: Change the background of this photo to a beach
[Provides image URL]

Claude: I'll edit that image for you.
[Calls seedream_edit_image with image URL and edit description]

Поддержка запросов на китайском языке

User: 生成一幅中国山水画,有远山、流水和古松

Claude: 好的,我来为您生成这幅山水画。
[Calls seedream_generate_image with Chinese prompt]

Воспроизводимая генерация

User: Generate a landscape and make sure I can recreate the exact same image later

Claude: I'll use the v3 model with a fixed seed.
[Calls seedream_generate_image with model=doubao-seedream-3-0-t2i-250415, seed=42]

Конфигурация

Переменные окружения

Переменная

Описание

По умолчанию

ACEDATACLOUD_API_TOKEN

API-токен от AceDataCloud

Обязательно

ACEDATACLOUD_API_BASE_URL

Базовый URL API

https://api.acedata.cloud

ACEDATACLOUD_OAUTH_CLIENT_ID

OAuth client ID (режим хостинга)

ACEDATACLOUD_PLATFORM_BASE_URL

Базовый URL платформы

https://platform.acedata.cloud

SEEDREAM_REQUEST_TIMEOUT

Тайм-аут запроса в секундах

1800

LOG_LEVEL

Уровень логирования

INFO

Параметры командной строки

mcp-seedream-pro --help

Options:
  --version          Show version
  --transport        Transport mode: stdio (default) or http
  --port             Port for HTTP transport (default: 8000)

Разработка

Настройка среды разработки

# Clone repository
git clone https://github.com/AceDataCloud/SeedreamMCP.git
cd SeedreamMCP

# Create virtual environment
python -m venv .venv
source .venv/bin/activate  # or `.venv\Scripts\activate` on Windows

# Install with dev dependencies
pip install -e ".[dev,test]"

Запуск тестов

# Run unit tests
pytest

# Run with coverage
pytest --cov=core --cov=tools

# Run integration tests (requires API token)
pytest -m integration

Качество кода

# Format code
ruff format .

# Lint code
ruff check .

# Type check
mypy core tools main.py

Сборка и публикация

# Install build dependencies
pip install -e ".[release]"

# Build package
python -m build

# Upload to PyPI
twine upload dist/*

Структура проекта

SeedreamMCP/
├── core/                   # Core modules
│   ├── __init__.py
│   ├── client.py          # HTTP client for Seedream API
│   ├── config.py          # Configuration management
│   ├── exceptions.py      # Custom exceptions
│   ├── server.py          # MCP server initialization
│   ├── types.py           # Type definitions
│   └── utils.py           # Utility functions
├── tools/                  # MCP tool definitions
│   ├── __init__.py
│   ├── image_tools.py     # Image generation/editing tools
│   ├── task_tools.py      # Task query tools
│   └── info_tools.py      # Model & size info tools
├── prompts/                # MCP prompt templates
│   └── __init__.py
├── tests/                  # Test suite
│   ├── conftest.py
│   ├── test_config.py
│   └── test_utils.py
├── deploy/                 # Deployment configs
│   ├── run.sh
│   └── production/
│       ├── deployment.yaml
│       ├── ingress.yaml
│       └── service.yaml
├── .github/                # GitHub Actions workflows
│   ├── dependabot.yml
│   └── workflows/
│       ├── ci.yaml
│       ├── claude.yml
│       ├── deploy.yaml
│       └── publish.yml
├── .env.example           # Environment template
├── .gitignore
├── .ruff.toml             # Ruff linter config
├── CHANGELOG.md
├── Dockerfile             # Docker image for HTTP mode
├── docker-compose.yaml    # Docker Compose config
├── LICENSE
├── main.py                # Entry point
├── pyproject.toml         # Project configuration
└── README.md

Справочник API

Этот сервер является оберткой для AceDataCloud Seedream API:

Варианты использования

  • Создание ИИ-арта — генерация потрясающих иллюстраций и цифрового искусства

  • Предметная фотосъемка — создание профессиональных композиций сцен с продуктами

  • Создание контента — генерация изображений для блогов, социальных сетей, маркетинга

  • Виртуальная примерка — визуализация одежды на разных моделях

  • Перенос стиля — преобразование фотографий в различные художественные стили

  • Дизайн игр — концепт-арт, дизайн персонажей, дизайн окружения

  • Электронная коммерция — макеты продуктов, лайфстайл-снимки, баннеры

Лицензия

MIT License - подробности см. в файле LICENSE.

Ссылки

Available Tools

7 tools
seedream_decompose_imageAInspect

Decompose one image into a base image and up to 16 editable transparent layers.

ParametersJSON Schema
NameRequiredDescriptionDefault
sizeNoOutput size: auto, 1K, 1.5K, or 2K.auto
imageYesOne PNG or JPEG URL/base64 image to decompose.
promptNoOptional elements to decompose; omit for automatic decomposition. Supports <bbox> coordinates.
watermarkNoWhether to add an AI-generated watermark.
callback_urlNoOptional webhook URL for async delivery.
output_formatNoBase image format; layers are always PNG.jpeg

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It usefully discloses the output structure (base image plus up to 16 transparent layers), but it does not disclose side effects or caveats such as async task behavior, default watermarking, non-destructiveness, or cost/rate implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One sentence contains a verb, object, and output shape with no filler. The key information is front-loaded, and every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a six-parameter tool with an output schema and no annotations, the description is serviceable but incomplete: it omits the asynchronous/deferred result path implied by callback_url and the need to poll via seedream_get_task, and it does not address watermark or task lifecycle behavior. However, the input schema is thorough and the output schema is present, closing some gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents all six parameters and the enum. The top-level description adds no parameter-level meaning beyond the schema, which matches the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Decompose') with a clear resource and outcome: one input image becomes a base image plus up to 16 editable transparent layers. This distinguishes it from sibling tools like seedream_edit_image or seedream_generate_image even without explicitly naming them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied by the verb and the layer output, but the description does not explicitly state when an agent should choose decompose over edit_image, nor does it mention exclusions or prerequisites. Sibling tool names provide some context, but the description itself gives no direct routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

seedream_edit_imageAInspect

Edit or modify existing images using ByteDance's Seedream/SeedEdit model.

This tool modifies existing images based on text instructions. It can change
styles, backgrounds, attributes, clothing, and more. Supports single or
multiple image inputs.

Use this when:
- You want to modify or transform an existing image
- You need to change style, background, colors, or attributes
- You want to apply artistic transformations (watercolor, oil painting, etc.)
- You need virtual try-on (clothing on person)
- You want to place objects in different scenes

Common use cases:
- Style transfer: "Convert to anime style", "Make it look like a pencil sketch"
- Background change: "Replace background with a sunset beach"
- Attribute edit: "Change hair color to blonde", "Add sunglasses"
- Virtual try-on: Provide person image + clothing image
- Scene composition: Place products in realistic environments

Returns:
    JSON with task_id, trace_id, success status, and edited image data
    including image URLs.
ParametersJSON Schema
NameRequiredDescriptionDefault
sizeNoModel-specific output size or explicit dimensions. Pro supports 1K/1.5K/2K; Lite supports 2K/3K/4K.
imageYesList of image URLs or base64-encoded images to edit. Supports HTTP/HTTPS URLs (publicly accessible) or base64 format (data:image/png;base64,...). Each image must be under 10MB.
modelNoModel to use for editing. Seedream 5.0 Pro, 5.0 Lite, 4.5, and 4.0 all support image editing when images are provided.doubao-seedream-5-0-260128
toolsNoOptional list of tool types for the model to use during editing.
promptYesDescription of the edit to perform on the image(s). Describe what changes you want. Example: 'Change the background to a beach scene', 'Make the person wear a red dress', 'Convert to watercolor painting style'
watermarkNoWhether to add an AI-generated watermark. Default is true.
backgroundNoSeedream 5.0 Pro background mode. transparent requires one PNG input and PNG output.
callback_urlNoOptional webhook URL for async result notification.
output_formatNoOutput image format. 'jpeg' (default) or 'png'.
response_formatNoResponse format. 'url' (default) or 'b64_json'.
optimize_prompt_optionsNoPrompt optimization. Pro supports standard/fast; Lite supports standard.
sequential_image_generationNoGenerate related images based on input. 'auto' enables it.
sequential_image_generation_optionsNoTunable options for grouped image generation.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states that the tool modifies images, supports single or multiple inputs, and returns a JSON payload with task_id, trace_id, success status, and image URLs, implying an async pattern. It also gives realistic transformation examples that help set expectations, though it doesn't touch on topics like rate limits, authentication, or failure modes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (overview, 'Use this when', common use cases, returns) and bullet lists that improve scannability. There is some minor redundancy between the opening line and the second paragraph—both state that the tool modifies existing images—but overall it is appropriately sized for a 13-parameter tool and front-loads the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 13 parameters and no annotations, the description provides a solid foundation: it names the operation, gives rich usage context, lists example prompts, and describes the return payload. The 100% schema coverage handles parameter details, and the output schema exists, so return values are already structured. It is not missing critical information, though an explicit pointer to seedream_generate_image for text-to-image would be a small enhancement.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3; the schema already documents all 13 parameters well. The description adds prompt examples and use cases that indirectly inform the prompt parameter, but it doesn't add meaning beyond the schema for parameters like watermark, output_format, or sequential_image_generation. It is neither redundant nor absent, but it doesn't elevate beyond the schema's own documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Edit or modify existing images using ByteDance's Seedream/SeedEdit model.' It clearly distinguishes itself from the sibling seedream_generate_image by repeatedly emphasizing existing images rather than generation from scratch. The scope is further clarified through concrete examples like style transfer, background change, and virtual try-on.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The 'Use this when' section provides clear contexts: modifying/transforming existing images, changing style/background/colors, applying artistic transformations, virtual try-on, and scene composition. It does not explicitly mention alternatives or when-not-to-use, but the conditions are concrete enough that an agent can route correctly. A minor gap is the lack of an explicit exclusion to seedream_generate_image.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

seedream_generate_imageAInspect

Generate an AI image from a text prompt using ByteDance's Seedream model.

This tool creates high-quality images from text descriptions using ByteDance's
Seedream models (powered by Doubao). Supports multiple model versions with different
capabilities and quality levels.

Use this when:
- You want to generate a new image from scratch based on a text description
- You need high-quality AI-generated images (photos, illustrations, art)
- You want to create images with specific styles, compositions, or themes

Do NOT use this when:
- You want to edit or modify an existing image (use seedream_edit_image instead)
- You need to combine multiple images (use seedream_edit_image instead)

Model selection guide:
- v5.0 (doubao-seedream-5-0-260128): Latest flagship, highest quality
- v4.5 (doubao-seedream-4-5-251128): Previous flagship, great quality and detail
- v4.0 (doubao-seedream-4-0-250828): Stable and cost-effective, great for most tasks
Returns:
    JSON with task_id, trace_id, success status, and generated image data
    including image URLs.
ParametersJSON Schema
NameRequiredDescriptionDefault
sizeNoModel-specific output size: Pro supports 1K/1.5K/2K (and auto for decomposition); Lite supports 2K/3K/4K. Explicit dimensions such as 2048x1024 are also accepted.
modelNoModel to use for generation. 'doubao-seedream-5-0-pro-260628' (v5.0 Pro, flagship single image, highest quality; no sequential generation, streaming, or web search). 'doubao-seedream-5-0-260128' (v5.0 Lite, latest flagship, sequential generation, streaming, web search). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value).doubao-seedream-5-0-260128
toolsNoOptional list of tool types for the model to use during generation. Currently only 'web_search' is supported. Only supported by doubao-seedream-5-0-260128 (v5.0).
promptYesDescription of the image to generate. Be descriptive about subject, style, atmosphere, lighting, and composition. Supports both Chinese and English. Example: 'A photorealistic portrait of an astronaut on Mars, golden hour lighting, cinematic composition, ultra-detailed'
watermarkNoWhether to add an AI-generated watermark. Default is true.
callback_urlNoOptional webhook URL to receive the result asynchronously. The API will POST the result to this URL when complete. Must be publicly accessible.
output_formatNoOutput image format. 'jpeg' (default) or 'png'.
response_formatNoResponse format for the generated image. 'url' (default) returns a public image URL. 'b64_json' returns base64-encoded image data.
optimize_prompt_optionsNoOptional prompt optimization configuration. Supports `mode` with values 'standard' (higher quality, slower) or 'fast' (quicker, lower quality). Only supported on doubao-seedream-4.5 (standard mode only) and doubao-seedream-4.0.
sequential_image_generationNoGenerate related images based on input. 'auto' enables it, 'disabled' (default) turns it off. Supported by Seedream 5.0 Lite, 4.5, and 4.0; not Pro.
sequential_image_generation_optionsNoTunable options for grouped image generation. Only honored when `sequential_image_generation=auto`. Supports `max_images` (int, range [1, 15]). Supported by Seedream 5.0 Lite, 4.5, and 4.0; not Pro.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description carries the behavioral burden, and it does disclose the return shape (task_id, trace_id, success status, image data/URLs) and broad model capability differences. However, it does not clarify that generation may be asynchronous and require polling via get_task, and its 'including image URLs' statement is incomplete for the b64_json response format. These are notable gaps for a complex generation tool, though not contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear headings, front-loaded purpose, and scannable bullets for use cases and model selection. It is somewhat long, and the model guide partially repeats schema content, but each section contributes actionable guidance. No filler or vague jargon detracts from the structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 11 parameters and model-specific compatibility constraints, the description covers core use cases and return values, and the output schema fills in return-structure details. Yet it misses the Pro model variant in the guide, does not mention polling via seedream_get_task, and does not summarize model-feature incompatibilities (e.g., Pro lacks sequential generation and web search). These gaps leave an agent less prepared for advanced but valid invocations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds a useful high-level model selection heuristic, but it largely duplicates the schema's model parameter details and omits the Pro model from its guide. It provides no additional meaning for size, tools, watermark, callback_url, output_format, or response_format beyond what the schema already explains.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Generate an AI image from a text prompt using ByteDance's Seedream model.' It explicitly distinguishes itself from seedream_edit_image by stating 'Do NOT use this when ... use seedream_edit_image instead,' and the sibling list confirms it is the generation vs. editing/list/getting task tool. No ambiguity remains about what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit 'Use this when' and 'Do NOT use this when' sections, including direct alternatives for editing or combining images. It also adds a model selection guide with quality/value heuristics, giving an agent concrete decision criteria for invocation. This goes beyond any structured schema data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

seedream_get_taskAInspect

Query the status and result of a Seedream image generation or edit task.

Use this to check if a generation/edit is complete and retrieve the resulting
image URLs and metadata.

Use this when:
- You want to check if an image generation has completed
- You need to retrieve image URLs from a previous generation
- You want to get the full details of a generated/edited image

Returns:
    Task status and image information including URLs, prompts, and metadata.
ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYesThe task ID returned from a generation or edit request. This is the 'task_id' field from any seedream_generate_image or seedream_edit_image tool response.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses it returns status and image information, implying a read-only operation. With no annotations, the description carries the burden and does well, though it could explicitly state it is non-destructive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concisely structured with bulleted usage scenarios and a return summary, though some minor repetition between the first line and the list.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present and a single required parameter, the description fully covers the tool's purpose and usage, leaving no gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the description's parameter info duplicates the schema description, adding no new meaning beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it queries the status and result of a specific task, distinguishing it from sibling tools like seedream_generate_image and seedream_get_tasks_batch.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit use cases (checking completion, retrieving URLs, getting full details) but does not mention when not to use or compare to seedream_get_tasks_batch.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

seedream_get_tasks_batchAInspect

Query multiple Seedream image tasks at once.

Efficiently check the status of multiple tasks in a single request.
More efficient than calling seedream_get_task multiple times.

Use this when:
- You have multiple pending generations to check
- You want to get status of several images at once
- You're tracking a batch of generations

Returns:
    Status and image information for all queried tasks.
ParametersJSON Schema
NameRequiredDescriptionDefault
task_idsYesList of task IDs to query. Allows querying multiple tasks at once.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It describes the operation as querying (read-only) and states it returns 'Status and image information'. It does not mention auth requirements or rate limits, but for a query tool, this is sufficient. Slightly more detail on the response format would improve, but overall transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with a clear initial sentence, a bullet-style list for usage scenarios, and a returns section. No redundant information; every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity (1 parameter, no annotations, output schema exists), the description sufficiently covers purpose, usage, and returns. It doesn't explain output schema details, but that's acceptable as the schema itself is present. A hint about pagination or result format could improve, but not necessary.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a clear parameter description. The tool description adds context about efficiency and use cases but does not add new parameter semantics beyond what the schema provides. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Query multiple Seedream image tasks at once' and distinguishes from the sibling tool 'seedream_get_task' by highlighting batch efficiency. The verb 'query' and resource 'tasks' are specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use scenarios: 'when you have multiple pending generations', 'when you want to get status of several images at once', 'when tracking a batch'. Although not explicitly stating when not to use, it implies the alternative for single tasks (seedream_get_task).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

seedream_list_modelsAInspect

List all available Seedream models with their capabilities and pricing.

Use this when:
- User asks what models are available
- You need to help choose the right model for a task
- You want to compare model capabilities

Returns:
    Formatted table of all Seedream models with descriptions.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It states it returns a formatted table with descriptions, implying no side effects. Does not mention authentication requirements or data freshness, but for a read-only listing tool it is adequately transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise: one line for purpose, bulleted use cases, and output format. No fluff. Well-structured and easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and an output schema exists, description is complete. Explains what models are listed and for what purpose. Does not need to explain return values since output schema covers that.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters in input schema. Description compensates by detailing what the output includes (capabilities, pricing, descriptions). Baseline 4 for zero-param tools where description adds meaningful output context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it lists all available Seedream models with capabilities and pricing. Specific verb 'list' and resource 'models'. Distinguishes from sibling tools which focus on editing, generating, or retrieving tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly lists three use cases: user asks about models, need to choose a model, want to compare capabilities. Does not mention when not to use, but that is not critical for a simple listing tool. No alternative tools suggested, but sibling tools are distinct in purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

seedream_list_sizesAInspect

List all available image sizes and resolution options for Seedream.

Use this when:
- User asks about available image sizes
- You need to help choose the right resolution
- You want to understand size options

Returns:
    Formatted list of all size options with descriptions.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states it returns a 'formatted list of all size options with descriptions', which is sufficient for a simple read-only listing tool with no parameters. It does not disclose potential rate limits or side effects, but these are minimal for such a tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with a clear 'Use this when' section and a 'Returns' section. Every sentence adds value, and the structure is front-loaded with the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has zero parameters and a simple list output, the description fully covers its purpose, usage context, and return value. The output schema exists, and the description notes the return format adequately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has no parameters, and schema description coverage is 100%. Per guidelines, baseline is 3 when coverage is high. The description does not add any parameter semantics since there are none to explain.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'List' and resource 'image sizes and resolution options for Seedream'. It clearly distinguishes from sibling tools like seedream_generate_image and seedream_list_models.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description includes a 'Use this when' section listing three clear scenarios. While it doesn't explicitly state when not to use it or mention alternatives, the guidelines are adequate for an agent to understand when to invoke this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv0.1.15
    • Addedseedream_decompose_image
    • Changedseedream_edit_image5 fields changed
      • addedInput schema / properties / background
        Added value: +{
        +  "anyOf": [
        +    {
        +      "enum": [
        +        "transparent",
        +        "opaque"
        +      ],
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Seedream 5.0 Pro background mode. transparent requires one PNG input and PNG output.",
        +  "title": "Background"
        +}
      • changedInput schema / properties / optimize_prompt_options / description
        Previous value: -"Optional prompt optimization configuration."New value: +"Prompt optimization. Pro supports standard/fast; Lite supports standard."
      • changedInput schema / properties / size / anyOf
        Previous value: -[
        -  {
        -    "enum": [
        -      "1K",
        -      "2K",
        -      "3K",
        -      "4K"
        -    ],
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / size / description
        Previous value: -"Output image resolution. '1K' (default), '2K', '3K', or '4K'."New value: +"Model-specific output size or explicit dimensions. Pro supports 1K/1.5K/2K; Lite supports 2K/3K/4K."
      • removedInput schema / properties / stream
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "boolean"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Stream pictures progressively when supported.",
        -  "title": "Stream"
        -}
    • Changedseedream_generate_image5 fields changed
      • changedInput schema / properties / sequential_image_generation / description
        Previous value: -"Generate related images based on input. 'auto' enables it, 'disabled' (default) turns it off. Only supports v4.5 and v4.0 models."New value: +"Generate related images based on input. 'auto' enables it, 'disabled' (default) turns it off. Supported by Seedream 5.0 Lite, 4.5, and 4.0; not Pro."
      • changedInput schema / properties / sequential_image_generation_options / description
        Previous value: -"Tunable options for grouped image generation. Only honored when `sequential_image_generation=auto`. Supports `max_images` (int, range [1, 15]). Only supported on doubao-seedream-4.5 and doubao-seedream-4.0."New value: +"Tunable options for grouped image generation. Only honored when `sequential_image_generation=auto`. Supports `max_images` (int, range [1, 15]). Supported by Seedream 5.0 Lite, 4.5, and 4.0; not Pro."
      • changedInput schema / properties / size / anyOf
        Previous value: -[
        -  {
        -    "enum": [
        -      "1K",
        -      "2K",
        -      "3K",
        -      "4K"
        -    ],
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / size / description
        Previous value: -"Output image resolution. '1K' (default), '2K', '3K', or '4K'. You can also specify custom dimensions like '1024x1024', '1280x720', etc."New value: +"Model-specific output size: Pro supports 1K/1.5K/2K (and auto for decomposition); Lite supports 2K/3K/4K. Explicit dimensions such as 2048x1024 are also accepted."
      • removedInput schema / properties / stream
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "boolean"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Stream all pictures progressively. Default is false. Only supports v4.5 and v4.0 models.",
        -  "title": "Stream"
        -}
  2. 1 tool updatev0.1.14
    • Changedseedream_edit_image5 fields changed
      • addedInput schema / properties / optimize_prompt_options
        Added value: +{
        +  "anyOf": [
        +    {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional prompt optimization configuration.",
        +  "title": "Optimize Prompt Options"
        +}
      • addedInput schema / properties / sequential_image_generation
        Added value: +{
        +  "anyOf": [
        +    {
        +      "enum": [
        +        "auto",
        +        "disabled"
        +      ],
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Generate related images based on input. 'auto' enables it.",
        +  "title": "Sequential Image Generation"
        +}
      • addedInput schema / properties / sequential_image_generation_options
        Added value: +{
        +  "anyOf": [
        +    {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Tunable options for grouped image generation.",
        +  "title": "Sequential Image Generation Options"
        +}
      • addedInput schema / properties / stream
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Stream pictures progressively when supported.",
        +  "title": "Stream"
        +}
      • addedInput schema / properties / tools
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "const": "web_search",
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional list of tool types for the model to use during editing.",
        +  "title": "Tools"
        +}
  3. 2 tool updatesv0.1.11
    • Changedseedream_edit_image2 fields changed
      • changedInput schema / properties / size / anyOf
        Previous value: -[
        -  {
        -    "enum": [
        -      "1K",
        -      "2K",
        -      "3K",
        -      "4K",
        -      "adaptive"
        -    ],
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "enum": [
        +      "1K",
        +      "2K",
        +      "3K",
        +      "4K"
        +    ],
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / size / description
        Previous value: -"Output image resolution. '1K' (default), '2K', '3K', '4K', or 'adaptive'."New value: +"Output image resolution. '1K' (default), '2K', '3K', or '4K'."
    • Changedseedream_generate_image2 fields changed
      • changedInput schema / properties / size / anyOf
        Previous value: -[
        -  {
        -    "enum": [
        -      "1K",
        -      "2K",
        -      "3K",
        -      "4K",
        -      "adaptive"
        -    ],
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "enum": [
        +      "1K",
        +      "2K",
        +      "3K",
        +      "4K"
        +    ],
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / size / description
        Previous value: -"Output image resolution. '1K' (default), '2K', '3K', '4K', or 'adaptive'. You can also specify custom dimensions like '1024x1024', '1280x720', etc."New value: +"Output image resolution. '1K' (default), '2K', '3K', or '4K'. You can also specify custom dimensions like '1024x1024', '1280x720', etc."
  4. 2 tool updatesv0.1.10
    • Changedseedream_edit_image5 fields changed
      • removedInput schema / properties / guidance_scale
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "number"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Prompt weight — higher values make edits follow the prompt more closely. Range: [1, 10]. Default is 5.5 for doubao-seededit-3-0-i2i. Only works with v3 models.",
        -  "title": "Guidance Scale"
        -}
      • changedInput schema / properties / model / default
        Previous value: -"doubao-seededit-3-0-i2i-250628"New value: +"doubao-seedream-5-0-260128"
      • changedInput schema / properties / model / description
        Previous value: -"Model to use for editing. 'doubao-seededit-3-0-i2i-250628' (dedicated editing model, best for image modification). Other models can also be used for editing when images are provided."New value: +"Model to use for editing. Seedream 5.0 Pro, 5.0 Lite, 4.5, and 4.0 all support image editing when images are provided."
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "doubao-seedream-5-0-pro-260628",
        -  "doubao-seedream-5-0-260128",
        -  "doubao-seedream-4-5-251128",
        -  "doubao-seedream-4-0-250828",
        -  "doubao-seedream-3-0-t2i-250415",
        -  "doubao-seededit-3-0-i2i-250628"
        -]New value: +[
        +  "doubao-seedream-5-0-pro-260628",
        +  "doubao-seedream-5-0-260128",
        +  "doubao-seedream-4-5-251128",
        +  "doubao-seedream-4-0-250828"
        +]
      • removedInput schema / properties / seed
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "integer"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Random seed for reproducible edits. Range: [-1, 2147483647]. Default is -1 (random). Only works with v3 models.",
        -  "title": "Seed"
        -}
    • Changedseedream_generate_image4 fields changed
      • removedInput schema / properties / guidance_scale
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "number"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Prompt weight — higher values make the result more closely follow the prompt. Range: [1, 10]. Default is 2.5 for doubao-seedream-3-0-t2i. Only works with v3 models.",
        -  "title": "Guidance Scale"
        -}
      • changedInput schema / properties / model / description
        Previous value: -"Model to use for generation. 'doubao-seedream-5-0-pro-260628' (v5.0 Pro, flagship single image, highest quality; no sequential generation, streaming, or web search). 'doubao-seedream-5-0-260128' (v5.0 Lite, latest flagship, sequential generation, streaming, web search). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value). 'doubao-seedream-3-0-t2i-250415' (v3 text-to-image, supports seed and guidance_scale). 'doubao-seededit-3-0-i2i-250628' is for image editing only — use seedream_edit_image instead."New value: +"Model to use for generation. 'doubao-seedream-5-0-pro-260628' (v5.0 Pro, flagship single image, highest quality; no sequential generation, streaming, or web search). 'doubao-seedream-5-0-260128' (v5.0 Lite, latest flagship, sequential generation, streaming, web search). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value)."
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "doubao-seedream-5-0-pro-260628",
        -  "doubao-seedream-5-0-260128",
        -  "doubao-seedream-4-5-251128",
        -  "doubao-seedream-4-0-250828",
        -  "doubao-seedream-3-0-t2i-250415",
        -  "doubao-seededit-3-0-i2i-250628"
        -]New value: +[
        +  "doubao-seedream-5-0-pro-260628",
        +  "doubao-seedream-5-0-260128",
        +  "doubao-seedream-4-5-251128",
        +  "doubao-seedream-4-0-250828"
        +]
      • removedInput schema / properties / seed
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "integer"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Random seed for reproducible results. Range: [-1, 2147483647]. Default is -1 (random). Only works with v3 models (doubao-seedream-3-0-t2i and doubao-seededit-3-0-i2i).",
        -  "title": "Seed"
        -}
  5. 2 tool updatesv0.1.9
    • Changedseedream_edit_image1 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "doubao-seedream-5-0-260128",
        -  "doubao-seedream-5.0-lite",
        -  "doubao-seedream-4-5-251128",
        -  "doubao-seedream-4-0-250828",
        -  "doubao-seedream-3-0-t2i-250415",
        -  "doubao-seededit-3-0-i2i-250628"
        -]New value: +[
        +  "doubao-seedream-5-0-pro-260628",
        +  "doubao-seedream-5-0-260128",
        +  "doubao-seedream-4-5-251128",
        +  "doubao-seedream-4-0-250828",
        +  "doubao-seedream-3-0-t2i-250415",
        +  "doubao-seededit-3-0-i2i-250628"
        +]
    • Changedseedream_generate_image2 fields changed
      • changedInput schema / properties / model / description
        Previous value: -"Model to use for generation. 'doubao-seedream-5-0-260128' (v5.0, latest flagship, highest quality). 'doubao-seedream-5.0-lite' (v5.0 economy variant, faster and lower cost). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value). 'doubao-seedream-3-0-t2i-250415' (v3 text-to-image, supports seed and guidance_scale). 'doubao-seededit-3-0-i2i-250628' is for image editing only — use seedream_edit_image instead."New value: +"Model to use for generation. 'doubao-seedream-5-0-pro-260628' (v5.0 Pro, flagship single image, highest quality; no sequential generation, streaming, or web search). 'doubao-seedream-5-0-260128' (v5.0 Lite, latest flagship, sequential generation, streaming, web search). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value). 'doubao-seedream-3-0-t2i-250415' (v3 text-to-image, supports seed and guidance_scale). 'doubao-seededit-3-0-i2i-250628' is for image editing only — use seedream_edit_image instead."
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "doubao-seedream-5-0-260128",
        -  "doubao-seedream-5.0-lite",
        -  "doubao-seedream-4-5-251128",
        -  "doubao-seedream-4-0-250828",
        -  "doubao-seedream-3-0-t2i-250415",
        -  "doubao-seededit-3-0-i2i-250628"
        -]New value: +[
        +  "doubao-seedream-5-0-pro-260628",
        +  "doubao-seedream-5-0-260128",
        +  "doubao-seedream-4-5-251128",
        +  "doubao-seedream-4-0-250828",
        +  "doubao-seedream-3-0-t2i-250415",
        +  "doubao-seededit-3-0-i2i-250628"
        +]
  6. 2 tool updatesv0.1.8
    • Changedseedream_edit_image1 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "doubao-seedream-5-0-260128",
        -  "doubao-seedream-4-5-251128",
        -  "doubao-seedream-4-0-250828",
        -  "doubao-seedream-3-0-t2i-250415",
        -  "doubao-seededit-3-0-i2i-250628"
        -]New value: +[
        +  "doubao-seedream-5-0-260128",
        +  "doubao-seedream-5.0-lite",
        +  "doubao-seedream-4-5-251128",
        +  "doubao-seedream-4-0-250828",
        +  "doubao-seedream-3-0-t2i-250415",
        +  "doubao-seededit-3-0-i2i-250628"
        +]
    • Changedseedream_generate_image2 fields changed
      • changedInput schema / properties / model / description
        Previous value: -"Model to use for generation. 'doubao-seedream-5-0-260128' (v5.0, latest flagship, highest quality). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value). 'doubao-seedream-3-0-t2i-250415' (v3 text-to-image, supports seed and guidance_scale). 'doubao-seededit-3-0-i2i-250628' is for image editing only — use seedream_edit_image instead."New value: +"Model to use for generation. 'doubao-seedream-5-0-260128' (v5.0, latest flagship, highest quality). 'doubao-seedream-5.0-lite' (v5.0 economy variant, faster and lower cost). 'doubao-seedream-4-5-251128' (v4.5, previous flagship, great quality). 'doubao-seedream-4-0-250828' (v4.0, stable, best value). 'doubao-seedream-3-0-t2i-250415' (v3 text-to-image, supports seed and guidance_scale). 'doubao-seededit-3-0-i2i-250628' is for image editing only — use seedream_edit_image instead."
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "doubao-seedream-5-0-260128",
        -  "doubao-seedream-4-5-251128",
        -  "doubao-seedream-4-0-250828",
        -  "doubao-seedream-3-0-t2i-250415",
        -  "doubao-seededit-3-0-i2i-250628"
        -]New value: +[
        +  "doubao-seedream-5-0-260128",
        +  "doubao-seedream-5.0-lite",
        +  "doubao-seedream-4-5-251128",
        +  "doubao-seedream-4-0-250828",
        +  "doubao-seedream-3-0-t2i-250415",
        +  "doubao-seededit-3-0-i2i-250628"
        +]
  7. 6 tool updatesv0.1.5
    • Addedseedream_edit_image
    • Addedseedream_generate_image
    • Addedseedream_get_task
    • Addedseedream_get_tasks_batch
    • Addedseedream_list_models
    • Addedseedream_list_sizes
  8. 6 tool updatesv0.1.3
    • Removedseedream_edit_image
    • Removedseedream_generate_image
    • Removedseedream_get_task
    • Removedseedream_get_tasks_batch
    • Removedseedream_list_models
    • Removedseedream_list_sizes
  9. 1 tool updatev0.1.1
    • Changedseedream_generate_image2 fields changed
      • addedInput schema / properties / optimize_prompt_options
        Added value: +{
        +  "anyOf": [
        +    {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional prompt optimization configuration. Supports `mode` with values 'standard' (higher quality, slower) or 'fast' (quicker, lower quality). Only supported on doubao-seedream-4.5 (standard mode only) and doubao-seedream-4.0.",
        +  "title": "Optimize Prompt Options"
        +}
      • addedInput schema / properties / sequential_image_generation_options
        Added value: +{
        +  "anyOf": [
        +    {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Tunable options for grouped image generation. Only honored when `sequential_image_generation=auto`. Supports `max_images` (int, range [1, 15]). Only supported on doubao-seedream-4.5 and doubao-seedream-4.0.",
        +  "title": "Sequential Image Generation Options"
        +}
  10. 6 tool updatesv0.1.0
    • First observedseedream_edit_image
    • First observedseedream_generate_image
    • First observedseedream_get_task
    • First observedseedream_get_tasks_batch
    • First observedseedream_list_models
    • First observedseedream_list_sizes

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct operation: model browsing, generation, editing, decomposition, size lookup, and task querying (single vs batch). The generate_image description explicitly warns against using it for editing, further reducing confusion.

Naming Consistency5/5

All tools follow a consistent seedream_ verb_noun pattern using snake_case. Actions are clearly grouped (list_*, get_*, *_image) making the naming uniform and predictable.

Tool Count5/5

With 7 tools, the server is well-scoped for an image generation and editing service. Each tool covers a necessary part of the workflow without redundancy or bloat.

Completeness5/5

The toolset covers the full core lifecycle: discover models/sizes, generate, edit, decompose, and retrieve results via single or batch task queries. No obvious gaps exist for basic generation and editing workflows.

Maintenance

ActivityActive
ResponsivenessResponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AceDataCloud/SeedreamMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server