Ecommerce Content Generation

Product Video Generator MCP Tool

Creates a video-generation task using the documented upstream contract, or queries a known task.

MCP tool name
nexscope_product_video_generator
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/product-video-generator/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": "product-video-generator-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_product_video_generator",
    "arguments": {
      "videoType": "1",
      "operation": "create",
      "videoTime": 5,
      "imageUrl": "https://example.com/product.jpg"
    }
  }
}
REST API equivalent
POST https://claw-callback.nexscope.ai/api/skill-api/v1/skills/product-video-generator/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/product-video-generator

Arguments

NameTypeRequiredMeaning
operationstringoptional
create (default) or query.
Example: create
imageUrlstringrequired
Public source image URL required by create.
Example: https://example.com/product.jpg
videoTypestringrequired
Provider video template/type required by create.
Example: 1
videoTimeintegerrequired
Requested video duration required by create.
Example: 5
promptstringoptional
Optional video-generation prompt.
Example: A rotating product showcase.
promptOptimizerbooleanoptional
Whether the provider should optimize the prompt.
Example: true
isProbooleanoptional
Whether to use the provider pro generation mode.
Example: false
voicestringoptional
Optional provider voice identifier.
Example: voice-id
lastFrameImageUrlstringoptional
Optional public last-frame image URL.
Example: https://example.com/last.jpg
aspectRatiostringoptional
Requested aspect ratio.
Example: 16:9
resolutionstringoptional
Requested output resolution.
Example: 720p
memberIdstringoptional
Optional provider member identifier.
Example: member-id
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
Asynchronous video task ID.
Example: 123456789
statusstringoptional
Task status.
Example: PROCESSING
videoUrlstringoptional
Generated video URL when successful.
Example: https://example.com/video.mp4
costTokenintegeroptional
Provider-reported token cost.
Example: 1
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": "1",
  "operation": "create",
  "videoTime": 5,
  "imageUrl": "https://example.com/product.jpg"
}

Example structuredContent

{
  "taskId": "123456789",
  "status": "PROCESSING",
  "videoUrl": "https://example.com/video.mp4",
  "costToken": 1
}