Skip to main content
Glama

seedance_list_models

List available Seedance models and compare their capabilities, strengths, and pricing to select the right one for your video generation project.

Instructions

List all available Seedance models with their capabilities and pricing.

Shows all available model options with their features, strengths, and costs.
Use this to understand which model to choose for your video generation.

Returns:
    Table of all models with descriptions, capabilities, and pricing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • Main handler function for seedance_list_models tool. Decorated with @mcp.tool(), returns a markdown table of all Seedance models with descriptions, capabilities, and pricing.
    @mcp.tool()
    async def seedance_list_models() -> str:
        """List all available Seedance models with their capabilities and pricing.
    
        Shows all available model options with their features, strengths, and costs.
        Use this to understand which model to choose for your video generation.
    
        Returns:
            Table of all models with descriptions, capabilities, and pricing.
        """
        # Last updated: 2026-04-05
        return """Available Seedance Models:
    
    | Model | Type | Strengths | Audio | Cost (720p/sec) |
    |-------|------|-----------|-------|-----------------|
    | doubao-seedance-2-0-260128 | 2.0 | Latest generation quality model | No | N/A |
    | doubao-seedance-2-0-fast-260128 | 2.0 Fast | Latest generation fast/cost-optimized model | No | N/A |
    | doubao-seedance-1-5-pro-251215 | Flagship | Newest, highest quality, audio support | Yes | ~$0.025 |
    | doubao-seedance-1-0-pro-250528 | Standard | Balanced quality and speed (default) | No | ~$0.049 |
    | doubao-seedance-1-0-pro-fast-251015 | Fast | Cost-optimized, faster generation | No | ~$0.014 |
    | doubao-seedance-1-0-lite-t2v-250428 | Lite T2V | Lightweight text-to-video | No | ~$0.033 |
    | doubao-seedance-1-0-lite-i2v-250428 | Lite I2V | Lightweight image-to-video | No | ~$0.033 |
    
    Model Selection Guide:
    - Latest quality: doubao-seedance-2-0-260128
    - Latest fast: doubao-seedance-2-0-fast-260128
    - Best quality: doubao-seedance-1-5-pro-251215 (newest flagship)
    - Best value: doubao-seedance-1-0-pro-250528 (standard, default)
    - Fastest/cheapest: doubao-seedance-1-0-pro-fast-251015
    - Text-only lightweight: doubao-seedance-1-0-lite-t2v-250428
    - Image-to-video lightweight: doubao-seedance-1-0-lite-i2v-250428
    
    Notes:
    - Audio generation is only supported by the 1.5 Pro model
    - 'flex' service tier offers 50% discount on all models
    - Resolution affects cost: 480p < 720p < 1080p
    """
  • Registration via @mcp.tool() decorator. The `mcp` instance from core.server registers this async function as an MCP tool.
    @mcp.tool()
  • core/server.py:48-55 (registration)
    FastMCP server instance (`mcp`) that the @mcp.tool() decorator binds to. Initialized with server name and icons.
    mcp = FastMCP(
        settings.server_name,
        icons=[Icon(src="", mimeType="image/png")],
        **mcp_kwargs,
    )
    
    logger.info(f"Initialized MCP server: {settings.server_name}")
  • main.py:117-121 (registration)
    Import of tools module in main.py triggers registration of all tool handlers including seedance_list_models.
    # Import tools and prompts to register them
    safe_print("  Loading tools and prompts...")
    import prompts  # noqa: F401, I001
    import tools  # noqa: F401
  • tools/__init__.py:1-10 (registration)
    Package __init__.py imports info_tools, causing the @mcp.tool() decorator to execute and register seedance_list_models.
    """Tools module for Seedance MCP server."""
    
    # Import all tools to register them with the MCP server
    from tools import info_tools, task_tools, video_tools
    
    __all__ = [
        "video_tools",
        "task_tools",
        "info_tools",
    ]
Behavior4/5

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

No annotations provided, but description states it returns a table with descriptions, capabilities, and pricing. It is a read-only listing operation with no side effects, disclosed fully. No contradictions.

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?

Description is six lines, front-loaded with the core purpose, followed by a usage sentence and a return description. Every sentence contributes valuable information; no redundancy.

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 existing output schema, the description fully covers the tool's purpose, usage guidance, and output format. It is complete and leaves no ambiguity for a simple listing tool.

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 schema, so description does not need to add parameter info. It adds value by describing the return as a table with capabilities and pricing, which is helpful beyond the output schema.

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 explicitly states tool lists all available Seedance models with capabilities and pricing, using clear verb+resource. Sibling tools are all generation or task-related, so this tool is clearly distinct as a listing/information tool.

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 clear usage context: 'Use this to understand which model to choose for your video generation.' It does not explicitly mention when not to use, but the sibling tools' names imply they are for generation, making the usage sufficiently clear.

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

Install Server

Other Tools

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/SeedanceMCP'

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