AI Content Generation
Multi-image Video Generator MCP Tool
Creates a multi-image video task or queries the provider task by taskId.
MCP tool name
nexscope_aigc_videogen_multiEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.
Call this MCP tool
Use tools/call with the MCP tool name below. The arguments object should match the table on this page.
{
"jsonrpc": "2.0",
"id": "aigc-videogen-multi-1",
"method": "tools/call",
"params": {
"name": "nexscope_aigc_videogen_multi",
"arguments": {
"videoType": "KLING",
"imageList": [
"https://example.com/product.jpg"
],
"isPro": false,
"voice": false,
"promptOptimizer": false,
"resolution": "720p",
"operation": "create",
"prompt": "Create a rotating product showcase.",
"videoTime": 5,
"aspectRatio": "16:9"
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/runCanonical detail URL
https://www.nexscope.ai/mcp-map/aigc-videogen-multiArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
operation | string | optional | create (default) or query. Example: create |
imageList | array | optional | Public reference image URLs required by create. KLING supports up to 7 images; SEED, SEED_FAST, and HAPPY_HORSE support up to 9. Example: [
"https://example.com/product.jpg"
] |
videoType | string | optional | Video model: KLING, SEED, SEED_FAST, or HAPPY_HORSE. Example: KLING |
videoTime | integer | optional | Duration in seconds. KLING supports 5 or 10; SEED and SEED_FAST support 5, 10, or 15; HAPPY_HORSE supports 5, 10, or 15 and defaults to 15 at the provider. Example: 5 |
prompt | string | optional | Generation prompt required by create. Example: Create a rotating product showcase. |
promptOptimizer | boolean | optional | Whether the provider should optimize the prompt. Example: false |
isPro | boolean | optional | Whether to use provider Pro mode. SEED_FAST and HAPPY_HORSE do not support Pro mode. Example: false |
voice | boolean | optional | Whether to generate audio. Supported by SEED and SEED_FAST only. Example: false |
aspectRatio | string | optional | Requested aspect ratio: 16:9 or 9:16. Example: 16:9 |
resolution | string | optional | Requested output resolution. Supported values depend on videoType. Example: 720p |
memberId | string | optional | Optional provider member identifier. Example: |
taskId | string | optional | Provider task ID returned by create; required by operation=query. Example: 123456789 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
taskId | string | optional | Provider task ID. Example: 123456789 |
status | string | optional | Provider task status. Example: PROCESSING |
videoUrl | string | optional | Generated video URL when available. Example: https://example.com/video.mp4 |
costToken | integer | optional | Provider-reported token cost. Example: 1260000 |
errcode | integer | optional | Upstream status code returned by the provider. Example: {} |
errmsg | string | optional | Upstream status message returned by the provider. Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
type | string | optional | Provider-specific render or payload type. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"videoType": "KLING",
"imageList": [
"https://example.com/product.jpg"
],
"isPro": false,
"voice": false,
"promptOptimizer": false,
"resolution": "720p",
"operation": "create",
"prompt": "Create a rotating product showcase.",
"videoTime": 5,
"aspectRatio": "16:9"
}Example structuredContent
{
"taskId": "123456789",
"status": "PROCESSING",
"videoUrl": "https://example.com/video.mp4",
"costToken": 1260000
}