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_multi
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx

If 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/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/aigc-videogen-multi

Arguments

NameTypeRequiredMeaning
operationstringoptional
create (default) or query.
Example: create
imageListarrayoptional
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" ]
videoTypestringoptional
Video model: KLING, SEED, SEED_FAST, or HAPPY_HORSE.
Example: KLING
videoTimeintegeroptional
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
promptstringoptional
Generation prompt required by create.
Example: Create a rotating product showcase.
promptOptimizerbooleanoptional
Whether the provider should optimize the prompt.
Example: false
isProbooleanoptional
Whether to use provider Pro mode. SEED_FAST and HAPPY_HORSE do not support Pro mode.
Example: false
voicebooleanoptional
Whether to generate audio. Supported by SEED and SEED_FAST only.
Example: false
aspectRatiostringoptional
Requested aspect ratio: 16:9 or 9:16.
Example: 16:9
resolutionstringoptional
Requested output resolution. Supported values depend on videoType.
Example: 720p
memberIdstringoptional
Optional provider member identifier.
Example:
taskIdstringoptional
Provider task ID returned by create; required by operation=query.
Example: 123456789

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
taskIdstringoptional
Provider task ID.
Example: 123456789
statusstringoptional
Provider task status.
Example: PROCESSING
videoUrlstringoptional
Generated video URL when available.
Example: https://example.com/video.mp4
costTokenintegeroptional
Provider-reported token cost.
Example: 1260000
errcodeintegeroptional
Upstream status code returned by the provider.
Example: {}
errmsgstringoptional
Upstream status message returned by the provider.
Example: {}
codestringoptional
Provider-specific status code.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
typestringoptional
Provider-specific render or payload type.
Example: {}
titlestringoptional
Provider-specific response title.
Example: {}
sourceTypestringoptional
Provider-specific source platform type.
Example: {}
sourceToolstringoptional
Provider-specific source tool name.
Example: {}
costTimeintegeroptional
Execution time reported by the upstream provider.
Example: {}
pageintegeroptional
Current page returned by the upstream provider.
Example: {}
pageSizeintegeroptional
Page size returned by the upstream provider.
Example: {}
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: {}
totalPageintegeroptional
Total page count returned by the upstream provider.
Example: {}
dataSnapshotMonthstringoptional
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
}