jimeng-video-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| VOLC_ACCESS_KEY_ID | Yes | Your Volc AccessKey ID for authentication. | |
| VOLC_SECRET_ACCESS_KEY | Yes | Your Volc Secret Access Key for authentication. | |
| NODE_TLS_REJECT_UNAUTHORIZED | No | Set to '0' if behind a proxy or VPN to bypass SSL certificate errors. | 0 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| jimeng_generate_videoA | Submit a video generation task using Jimeng Video 3.0 (即梦视频3.0). This is an image-to-video (first frame) model. You provide:
Output: 720P video, either 5 seconds (121 frames) or 10 seconds (241 frames). Args:
Note: Either image_url or image_base64 must be provided (one of the two). Returns: task_id for querying results with jimeng_query_video_task. Examples:
|
| jimeng_query_video_taskA | Query the status and result of a Jimeng Video 3.0 generation task. Use after calling jimeng_generate_video to get the generated video. Video generation typically takes 1-3 minutes. If status is "in_queue" or "generating", wait and query again. Args:
Returns:
Important: Video URLs expire after 1 hour. Download promptly. |
| jimeng_generate_video_and_waitA | Generate a video using Jimeng Video 3.0 and automatically poll until complete. Convenience tool that combines jimeng_generate_video + jimeng_query_video_task. Submits the task and polls for the result, returning the video URL when done. All parameters are the same as jimeng_generate_video. Timeout: ~5 minutes (video generation is slower than image generation). Polling interval: 10 seconds. Args:
Note: Either image_url or image_base64 is required. Returns: Video URL (valid 1 hour) or error message. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The three tools have clear boundaries: submit, query, and a combined submit-and-wait convenience tool. The only ambiguity is jimeng_generate_video_and_wait overlapping with the explicit two-step flow, but the description clearly frames it as a convenience wrapper.
All tools follow a consistent jimeng_<verb>_<noun> snake_case pattern (jimeng_generate_video, jimeng_query_video_task, jimeng_generate_video_and_wait), and the query verb matches its task_id return/argument naming.
Three tools is slightly thin but justified for an async generation service: submit, query, and a synchronous convenience variant. It covers the essential workflow without bloat.
The full generate→poll lifecycle is covered, including a blocking convenience variant. Minor gaps: no cancellation, task listing, or asset/upload handling, but the domain (image-to-video generation) is otherwise well-served.