query_video_generation
Check the status of a video generation task using the provided Task ID. Save the output file to a specified directory relative to the base path configured in MiniMax MCP JS.
Instructions
Query the status of a video generation task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputDirectory | No | The directory to save the output file. `outputDirectory` is relative to `MINIMAX_MCP_BASE_PATH` (or `basePath` in config). The final save path is `${basePath}/${outputDirectory}`. For example, if `MINIMAX_MCP_BASE_PATH=~/Desktop` and `outputDirectory=workspace`, the output will be saved to `~/Desktop/workspace/` | |
taskId | Yes | The Task ID to query. Should be the task_id returned by `generate_video` tool if `async_mode` is True. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputDirectory": {
"description": "The directory to save the output file. `outputDirectory` is relative to `MINIMAX_MCP_BASE_PATH` (or `basePath` in config). The final save path is `${basePath}/${outputDirectory}`. For example, if `MINIMAX_MCP_BASE_PATH=~/Desktop` and `outputDirectory=workspace`, the output will be saved to `~/Desktop/workspace/`",
"type": "string"
},
"taskId": {
"description": "The Task ID to query. Should be the task_id returned by `generate_video` tool if `async_mode` is True.",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}