Skip to main content
Glama

Seedance 2.0 usage guide

seedance_usage_guide
Read-onlyIdempotent

Retrieve the canonical usage guide for Seedance 2.0 MCP to understand the standard create-wait-check workflow, model choices, parameter reference, and important caveats before creating your first task.

Instructions

Returns the canonical usage guide for the Seedance 2.0 MCP: standard create -> wait -> check workflow, model choices, parameter reference, and important caveats. Call this before your first seedance_create_task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for seedance_usage_guide tool. It simply returns the USAGE_GUIDE string as text content.
    async (): Promise<CallToolResult> => ({
      content: [{ type: "text", text: USAGE_GUIDE }],
    }),
  • The input schema for seedance_usage_guide - empty object (no inputs needed), with annotations marking it as read-only and idempotent.
    {
      title: "Seedance 2.0 usage guide",
      description:
        "Returns the canonical usage guide for the Seedance 2.0 MCP: standard create -> wait -> check workflow, model choices, parameter reference, and important caveats. Call this before your first seedance_create_task.",
      inputSchema: {},
  • src/server.ts:31-47 (registration)
    Registration of the seedance_usage_guide tool using server.registerTool() with name, schema, annotations, and handler.
    server.registerTool(
      "seedance_usage_guide",
      {
        title: "Seedance 2.0 usage guide",
        description:
          "Returns the canonical usage guide for the Seedance 2.0 MCP: standard create -> wait -> check workflow, model choices, parameter reference, and important caveats. Call this before your first seedance_create_task.",
        inputSchema: {},
        annotations: {
          readOnlyHint: true,
          idempotentHint: true,
          openWorldHint: false,
        },
      },
      async (): Promise<CallToolResult> => ({
        content: [{ type: "text", text: USAGE_GUIDE }],
      }),
    );
  • The USAGE_GUIDE constant string that contains the full markdown usage guide content returned by the tool.
    export const USAGE_GUIDE = `# Seedance 2.0 MCP - Usage Guide
    
    This MCP server wraps the Volcengine ARK Seedance 2.0 video generation API as
    three local stdio tools. Calls require the ARK_API_KEY environment variable.
    
    ## Standard workflow
    
    1. Call \`seedance_create_task\` with your prompt (and any reference media URLs).
       It returns a \`task_id\` immediately and DOES NOT wait for the video to render.
    2. Wait 30-90 seconds.
    3. Call \`seedance_check_task\` with that \`task_id\`.
    4. Repeat step 3 until status is \`succeeded\` or \`failed\`. A 15-second job on the
       standard model typically takes ~2-5 minutes total.
    5. If the job succeeded, download the returned \`video_url\` promptly: generated
       URLs from ARK normally expire within 24 hours.
    
    ## Models
    
    - \`doubao-seedance-2-0-260128\` (default): standard, highest-quality Seedance 2.0.
    - \`doubao-seedance-2-0-fast-260128\`: faster / cheaper variant, lower fidelity.
    
    ## Parameters (\`seedance_create_task\`)
    
    - \`prompt\` (string, required): natural-language description. Reference media as
      \`[Image1]\`, \`[Video1]\`, \`[Audio1]\` in 1-based order matching your arrays.
    - \`model\` (enum, optional, default \`doubao-seedance-2-0-260128\`).
    - \`duration\` (integer, optional, default \`5\`): seconds, range \`[4, 15]\`.
    - \`ratio\` (enum, optional, default \`16:9\`): one of \`21:9\`, \`16:9\`, \`4:3\`,
      \`1:1\`, \`3:4\`, \`9:16\`, \`adaptive\`.
    - \`resolution\` (enum, optional, default \`720p\`): \`480p\` or \`720p\`.
    - \`generate_audio\` (boolean, optional, default \`true\`).
    - \`watermark\` (boolean, optional, default \`true\`).
    - \`web_search\` (boolean, optional, default \`false\`): prompt enhancement via web
      search. Only allowed when there is NO reference media.
    - \`return_last_frame\` (boolean, optional, default \`false\`): also return the last
      frame as an image URL.
    - \`image_urls\` (array, optional, max 9): \`{ url, role? }\`. \`role\` defaults to
      \`reference_image\`. Use \`first_frame\` (and optionally \`last_frame\`) for
      image-to-video animation.
    - \`video_urls\` (array, optional, max 3): \`{ url, role? }\`. \`role\` defaults to
      \`reference_video\`.
    - \`audio_urls\` (array, optional, max 3): \`{ url, role? }\`. \`role\` defaults to
      \`reference_audio\`. Audio MUST be combined with at least one image or video
      reference; pure-text + audio is rejected by Seedance.
    
    ## Important notes
    
    - Generated \`video_url\` (and \`last_frame_url\`) are signed URLs that expire,
      typically within 24 hours. Download them as soon as the task succeeds.
    - All image / video / audio URLs you pass MUST be publicly reachable from the
      internet. Local file paths and intranet URLs do NOT work.
    - A 15-second standard-model job usually needs 2-5 minutes to render. Be patient
      with polling.
    - \`web_search=true\` requires text-only input. If you also pass
      \`image_urls\`, \`video_urls\` or \`audio_urls\`, the create call will be rejected.
    - The MCP never logs or returns your API key. Keep \`ARK_API_KEY\` in your
      client config / shell env, NOT in source control.
    `;
Behavior3/5

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

Annotations (readOnlyHint, idempotentHint) already declare safe, idempotent behavior. The description adds that it returns a guide, but no additional behavioral traits beyond what annotations provide.

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?

Two sentences, no wasted words. Front-loaded with key purpose and usage instruction. Highly concise and well-structured.

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?

For a zero-parameter, no-output-schema guide tool, the description fully explains its purpose, content, and when to use it. No gaps.

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 exist, so baseline is 4. The description adds meaning by explaining the tool's purpose and content, compensating for lack of parameters.

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 returns the canonical usage guide for Seedance 2.0 MCP, detailing workflow, model choices, parameters, and caveats. It distinguishes itself from sibling tools (check, create) by being the preliminary guide.

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?

Explicit advice to call before first seedance_create_task provides clear context for use. No exclusions or alternatives are needed given its unique role as a guide.

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/leonaiuv/seedance-2-mcp'

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