Nexscope

AI Content Generation

Product Description Generator MCP Tool

Creates a text-generation task from product copy instructions and image URLs, or queries a known task ID.

MCP tool name
nexscope_product_description_generator
Legacy MCP endpoint
/api/skill-api/v1/mcp
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-description-generator-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_product_description_generator",
    "arguments": {
      "imageUrls": [],
      "prompt": "Write a product description for a wireless speaker.",
      "model": "GEM_3_FLASH",
      "thinkingLevel": "minimal",
      "operation": "create"
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/product-description-generator

Arguments

NameTypeRequiredMeaning
operationstringoptional
create (default) or query.
Example: create
promptstringoptional
Product-copy generation instruction; required by create.
Example: Write a product description for a wireless speaker.
imageUrlsarrayoptional
Media URLs used as context. Pass an empty array for text-only generation; use up to 10 images or typically one video.
Example: []
thinkingLevelstringoptional
Reasoning level required by create. GEM_3_1_PRO does not support minimal.
Example: minimal
modelstringoptional
Text-generation model. GEM_3_FLASH is the default.
Example: GEM_3_FLASH
memberIdstringoptional
Optional provider member identifier used by create and query.
Example:
taskIdstringoptional
Provider task ID returned by create; required by operation=query.
Example: 123456789

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredDescription
dataanyrequired
Data value used by this API operation.
codeintegerrequired
0 means accepted or successful; nonzero is a platform error.
msgstring | nullrequired
Msg value used by this API operation.
tsstringrequired
Epoch milliseconds.
timestringrequired
Server local time: yyyy-MM-dd HH:mm:ss.
coststringrequired
Elapsed milliseconds, never credits; -1 outside web requests.
traceIdstring | nullrequired
Trace id value used by this API operation.

Any of option 1

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.taskIdstringoptional
Asynchronous generation task ID.
Example: 123456789
data.statusstringoptional
Task status such as PROCESSING, SUCCESS, or FAILED.
Example: PROCESSING
data.contentstringoptional
Generated product copy when the task succeeds.
Example: Example product description.
data.promptTokensintegeroptional
Input token count when the task succeeds.
Example: 120
data.completionTokensintegeroptional
Output token count when the task succeeds.
Example: 350
data.totalTokensintegeroptional
Total token count when the task succeeds.
Example: 470
data.costTokenintegeroptional
Provider-reported token cost.
Example: 1
data.typestringoptional
Provider-specific render or payload type.
Example: null
data.titlestringoptional
Provider-specific response title.
Example: null
data.sourceTypestringoptional
Provider-specific source platform type.
Example: null
data.sourceToolstringoptional
Provider-specific source tool name.
Example: null
data.costTimeintegeroptional
Execution time reported by the upstream provider.
Example: null
data.pageintegeroptional
Current page returned by the upstream provider.
Example: null
data.pageSizeintegeroptional
Page size returned by the upstream provider.
Example: null
data.pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: null
data.totalPageintegeroptional
Total page count returned by the upstream provider.
Example: null
data.dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: null

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "imageUrls": [],
  "prompt": "Write a product description for a wireless speaker.",
  "model": "GEM_3_FLASH",
  "thinkingLevel": "minimal",
  "operation": "create"
}

Example structuredContent

{
  "data": {
    "taskId": "123456789",
    "status": "PROCESSING",
    "content": "Example product description.",
    "promptTokens": 120,
    "completionTokens": 350,
    "totalTokens": 470,
    "costToken": 1
  },
  "code": 0,
  "msg": "Generation failed.",
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}