SeedreamMCP
SeedreamMCP
Сервер 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
Справочник инструментов
Инструмент | Описание |
| Генерация изображения по текстовому запросу с использованием модели ByteDance Seedream. |
| Редактирование или изменение существующих изображений с использованием модели ByteDance Seedream/SeedEdit. |
| Запрос статуса и результата задачи генерации или редактирования изображения Seedream. |
| Запрос нескольких задач изображений Seedream одновременно. |
| Список всех доступных моделей Seedream с их возможностями и ценами. |
| Список всех доступных размеров изображений и вариантов разрешения для Seedream. |
Быстрый старт
1. Получите ваш API-токен
Зарегистрируйтесь на платформе AceDataCloud
Перейдите на страницу документации API
Нажмите "Acquire" (Получить), чтобы получить ваш API-токен
Скопируйте токен для использования ниже
2. Используйте размещенный сервер (рекомендуется)
AceDataCloud предоставляет управляемый MCP-сервер — локальная установка не требуется.
Эндпоинт: https://seedream.mcp.acedata.cloud/mcp
Все запросы требуют токен Bearer. Используйте API-токен из шага 1.
Claude.ai
Подключитесь напрямую на Claude.ai с помощью OAuth — API-токен не требуется:
Перейдите в Claude.ai Settings → Integrations → Add More
Введите URL сервера:
https://seedream.mcp.acedata.cloud/mcpЗавершите процесс входа через OAuth
Начните использовать инструменты в вашем диалоге
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
Перейдите в Settings → Tools → AI Assistant → Model Context Protocol (MCP)
Нажмите Add → HTTP
Вставьте:
{
"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 8000Claude 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 каждого запроса.
Доступные инструменты
Генерация и редактирование изображений
Инструмент | Описание |
| Генерация изображения по текстовому запросу |
| Редактирование или изменение существующих изображений с помощью ИИ |
Управление задачами
Инструмент | Описание |
| Запрос статуса и результата одной задачи |
| Запрос нескольких задач одновременно |
Информация
Инструмент | Описание |
| Список доступных моделей с их возможностями |
| Список доступных вариантов размера изображения |
Доступные модели
Модель | Версия | Тип | Лучше всего подходит для | Цена |
| v5.0 | Текст в изображение | Лучшее качество, новейший флагман, веб-поиск | ~$0.040/изобр. |
| v4.5 | Текст в изображение | Предыдущий флагман, отличное качество | ~$0.037/изобр. |
| v4.0 | Текст в изображение | Лучшее соотношение цены и качества, большинство задач | ~$0.030/изобр. |
| v3.0 | Текст в изображение | Воспроизводимые результаты | ~$0.038/изобр. |
| 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]Конфигурация
Переменные окружения
Переменная | Описание | По умолчанию |
| API-токен от AceDataCloud | Обязательно |
| Базовый URL API |
|
| OAuth client ID (режим хостинга) | — |
| Базовый URL платформы |
|
| Тайм-аут запроса в секундах |
|
| Уровень логирования |
|
Параметры командной строки
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:
Seedream Images API — Генерация и редактирование изображений
Seedream Tasks API — Запросы задач
Варианты использования
Создание ИИ-арта — генерация потрясающих иллюстраций и цифрового искусства
Предметная фотосъемка — создание профессиональных композиций сцен с продуктами
Создание контента — генерация изображений для блогов, социальных сетей, маркетинга
Виртуальная примерка — визуализация одежды на разных моделях
Перенос стиля — преобразование фотографий в различные художественные стили
Дизайн игр — концепт-арт, дизайн персонажей, дизайн окружения
Электронная коммерция — макеты продуктов, лайфстайл-снимки, баннеры
Лицензия
MIT License - подробности см. в файле LICENSE.
Ссылки
Available Tools
7 toolsseedream_decompose_imageAInspect
Decompose one image into a base image and up to 16 editable transparent layers.
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Output size: auto, 1K, 1.5K, or 2K. | auto |
| image | Yes | One PNG or JPEG URL/base64 image to decompose. | |
| prompt | No | Optional elements to decompose; omit for automatic decomposition. Supports <bbox> coordinates. | |
| watermark | No | Whether to add an AI-generated watermark. | |
| callback_url | No | Optional webhook URL for async delivery. | |
| output_format | No | Base image format; layers are always PNG. | jpeg |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Model-specific output size or explicit dimensions. Pro supports 1K/1.5K/2K; Lite supports 2K/3K/4K. | |
| image | Yes | List 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. | |
| model | No | 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. | doubao-seedream-5-0-260128 |
| tools | No | Optional list of tool types for the model to use during editing. | |
| prompt | Yes | Description 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' | |
| watermark | No | Whether to add an AI-generated watermark. Default is true. | |
| background | No | Seedream 5.0 Pro background mode. transparent requires one PNG input and PNG output. | |
| callback_url | No | Optional webhook URL for async result notification. | |
| output_format | No | Output image format. 'jpeg' (default) or 'png'. | |
| response_format | No | Response format. 'url' (default) or 'b64_json'. | |
| optimize_prompt_options | No | Prompt optimization. Pro supports standard/fast; Lite supports standard. | |
| sequential_image_generation | No | Generate related images based on input. 'auto' enables it. | |
| sequential_image_generation_options | No | Tunable options for grouped image generation. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | 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. | |
| model | No | 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-5-0-260128 |
| tools | No | Optional 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). | |
| prompt | Yes | Description 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' | |
| watermark | No | Whether to add an AI-generated watermark. Default is true. | |
| callback_url | No | Optional webhook URL to receive the result asynchronously. The API will POST the result to this URL when complete. Must be publicly accessible. | |
| output_format | No | Output image format. 'jpeg' (default) or 'png'. | |
| response_format | No | Response format for the generated image. 'url' (default) returns a public image URL. 'b64_json' returns base64-encoded image data. | |
| optimize_prompt_options | No | 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. | |
| sequential_image_generation | No | 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. | |
| sequential_image_generation_options | No | 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. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The 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
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| task_ids | Yes | List of task IDs to query. Allows querying multiple tasks at once. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
3 tool updates
v0.1.15- Added
seedream_decompose_image - Changed
seedream_edit_image5 fields changed- added
Input schema / properties / backgroundAdded 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" +} - changed
Input schema / properties / optimize_prompt_options / descriptionPrevious value: -"Optional prompt optimization configuration."New value: +"Prompt optimization. Pro supports standard/fast; Lite supports standard." - changed
Input schema / properties / size / anyOfPrevious value: -[ - { - "enum": [ - "1K", - "2K", - "3K", - "4K" - ], - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / size / descriptionPrevious 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." - removed
Input schema / properties / streamRemoved value: -{ - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Stream pictures progressively when supported.", - "title": "Stream" -}
- Changed
seedream_generate_image5 fields changed- changed
Input schema / properties / sequential_image_generation / descriptionPrevious 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." - changed
Input schema / properties / sequential_image_generation_options / descriptionPrevious 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." - changed
Input schema / properties / size / anyOfPrevious value: -[ - { - "enum": [ - "1K", - "2K", - "3K", - "4K" - ], - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / size / descriptionPrevious 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." - removed
Input schema / properties / streamRemoved 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" -}
1 tool update
v0.1.14- Changed
seedream_edit_image5 fields changed- added
Input schema / properties / optimize_prompt_optionsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Optional prompt optimization configuration.", + "title": "Optimize Prompt Options" +} - added
Input schema / properties / sequential_image_generationAdded 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" +} - added
Input schema / properties / sequential_image_generation_optionsAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Tunable options for grouped image generation.", + "title": "Sequential Image Generation Options" +} - added
Input schema / properties / streamAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Stream pictures progressively when supported.", + "title": "Stream" +} - added
Input schema / properties / toolsAdded 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" +}
2 tool updates
v0.1.11- Changed
seedream_edit_image2 fields changed- changed
Input schema / properties / size / anyOfPrevious value: -[ - { - "enum": [ - "1K", - "2K", - "3K", - "4K", - "adaptive" - ], - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "enum": [ + "1K", + "2K", + "3K", + "4K" + ], + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / size / descriptionPrevious value: -"Output image resolution. '1K' (default), '2K', '3K', '4K', or 'adaptive'."New value: +"Output image resolution. '1K' (default), '2K', '3K', or '4K'."
- Changed
seedream_generate_image2 fields changed- changed
Input schema / properties / size / anyOfPrevious value: -[ - { - "enum": [ - "1K", - "2K", - "3K", - "4K", - "adaptive" - ], - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "enum": [ + "1K", + "2K", + "3K", + "4K" + ], + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / size / descriptionPrevious 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."
2 tool updates
v0.1.10- Changed
seedream_edit_image5 fields changed- removed
Input schema / properties / guidance_scaleRemoved 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" -} - changed
Input schema / properties / model / defaultPrevious value: -"doubao-seededit-3-0-i2i-250628"New value: +"doubao-seedream-5-0-260128" - changed
Input schema / properties / model / descriptionPrevious 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." - changed
Input schema / properties / model / enumPrevious 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" +] - removed
Input schema / properties / seedRemoved 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" -}
- Changed
seedream_generate_image4 fields changed- removed
Input schema / properties / guidance_scaleRemoved 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" -} - changed
Input schema / properties / model / descriptionPrevious 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)." - changed
Input schema / properties / model / enumPrevious 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" +] - removed
Input schema / properties / seedRemoved 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" -}
2 tool updates
v0.1.9- Changed
seedream_edit_image1 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
- Changed
seedream_generate_image2 fields changed- changed
Input schema / properties / model / descriptionPrevious 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." - changed
Input schema / properties / model / enumPrevious 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" +]
2 tool updates
v0.1.8- Changed
seedream_edit_image1 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
- Changed
seedream_generate_image2 fields changed- changed
Input schema / properties / model / descriptionPrevious 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." - changed
Input schema / properties / model / enumPrevious 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" +]
6 tool updates
v0.1.5- Added
seedream_edit_image - Added
seedream_generate_image - Added
seedream_get_task - Added
seedream_get_tasks_batch - Added
seedream_list_models - Added
seedream_list_sizes
6 tool updates
v0.1.3- Removed
seedream_edit_image - Removed
seedream_generate_image - Removed
seedream_get_task - Removed
seedream_get_tasks_batch - Removed
seedream_list_models - Removed
seedream_list_sizes
1 tool update
v0.1.1- Changed
seedream_generate_image2 fields changed- added
Input schema / properties / optimize_prompt_optionsAdded 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" +} - added
Input schema / properties / sequential_image_generation_optionsAdded 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" +}
6 tool updates
v0.1.0- First observed
seedream_edit_image - First observed
seedream_generate_image - First observed
seedream_get_task - First observed
seedream_get_tasks_batch - First observed
seedream_list_models - First observed
seedream_list_sizes
TDQS
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.
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.
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.
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
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
Generate images, video, music, voice and 3D through one API. 30 tools, 200+ models.
Best Image and video generation: 20+ models (Kling, Seedance, Veo, NB, FLUX.2), OAuth, pay-per-use.
MCP server for ByteDance Seedance AI video generation
AI-native digital asset management: semantic search, generative image edits, and CDN delivery.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI image generation using Volcano Engine's Seedream 4.0 API with text-to-image, image-to-image, multi-image fusion capabilities, built-in prompt templates, and automatic cloud storage integration.19MIT
- AlicenseAqualityCmaintenanceEnables AI image generation using Doubao Seedream models and video generation using Doubao Seedance models through Volcano Engine's API, supporting text-to-image, image-to-image, text-to-video, and task status queries.3263MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI-powered image generation using Volcano Engine's SeeDream 4.0 model. Supports custom sizes, reference images, and automatic prompt generation without complex prompting.29MIT
- AlicenseAqualityBmaintenanceByteDance Seedance AI video generation with text-to-video, image-to-video, multiple models (1.5 Pro/1.0 Pro/Lite), synchronized audio, and flexible resolutions up to 1080p.718MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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