Patent & IP Risk

Product TRO Detection MCP Tool

Analyzes a main product image with optional evidence images, text, keywords, and language.

MCP tool name
nexscope_maidalv_product_tro_detection
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/maidalv-product-tro-detection/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": "maidalv-product-tro-detection-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_maidalv_product_tro_detection",
    "arguments": {
      "mainProductImage": "https://example.com/product.jpg",
      "language": "en"
    }
  }
}
REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/maidalv-product-tro-detection/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/maidalv-product-tro-detection

Arguments

NameTypeRequiredMeaning
mainProductImagestringrequired
Public HTTPS URL of the main product image.
Example: https://example.com/product.jpg
referenceImagesarrayoptional
Public reference image URLs.
Example: []
otherProductImagesarrayoptional
Additional product image URLs.
Example: []
ipImagesarrayoptional
Known intellectual-property evidence image URLs.
Example: []
referenceTextstringoptional
Reference text associated with the product.
Example: Wireless speaker
descriptionstringoptional
Product description used as additional evidence.
Example: Portable wireless speaker
ipKeywordsarrayoptional
Intellectual-property keywords.
Example: [ "speaker" ]
languagestringoptional
Requested response language.
Example: en

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
checkIdstringoptional
Provider check identifier.
Example: check-id
statusstringoptional
Detection status.
Example: success
totalintegeroptional
Number of detected issues or records.
Example: 2
riskLevelstringoptional
Overall risk level when returned.
Example: medium
dataarrayoptional
Detection findings.
Example: []
costTokenintegeroptional
Provider-reported token cost.
Example: 225000
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

{
  "mainProductImage": "https://example.com/product.jpg",
  "language": "en"
}

Example structuredContent

{
  "checkId": "check-id",
  "status": "success",
  "total": 2,
  "riskLevel": "medium",
  "data": [],
  "costToken": 225000
}