Nexscope

Patent & IP Risk

Ruiguan Copyright Detection MCP Tool

Detect image copyright infringement risks by comparing against a database of registered copyrighted works with similarity scoring, TRO litigation history, and radar-based infringement assessment.

MCP tool name
nexscope_ruiguan_copyright_detection
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/ruiguan-copyright-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": "ruiguan-copyright-detection-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_ruiguan_copyright_detection",
    "arguments": {
      "imageUrl": "https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg",
      "enableRadar": false,
      "topNumber": 10
    }
  }
}
REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/ruiguan-copyright-detection/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/ruiguan-copyright-detection

Arguments

NameTypeRequiredMeaning
imageUrlstringrequired
URL of the copyrighted image to inspect (maximum 1,000 characters)
Example: https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg
topNumberintegerrequired
Maximum number of matches to return (default 100, minimum 10, maximum 200)
Example: 10
enableRadarbooleanrequired
Whether to enable radar detection (default true)
Example: false

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.totalintegeroptional
Number of records
Example: 1
data.dataarrayoptional
Detection results; see the fields below
Example: []
data.detectIdstringoptional
Detection ID
Example: example-id
data.columnsarrayoptional
Column definitions used for rendering
Example: []
data.costTokenintegeroptional
Tokens consumed
Example: 1
data.typestringoptional
Rendering style
Example: null
data.data[].pathstringoptional
Path to the copyrighted artwork
Example: null
data.data[].pathThumbstringoptional
Thumbnail path for the copyrighted artwork
Example: null
data.data[].similaritystringoptional
Similarity score
Example: null
data.data[].subRadarResultintegeroptional
Radar result: 1 means infringement, 0 means no infringement, and null means radar detection was not performed
Example: 1
data.data[].copyrightUrlstringoptional
Source URL
Example: https://example.com/image.jpg
data.data[].copyrightCodestringoptional
Copyright identifier
Example: null
data.data[].rightsOwnerstringoptional
Rights owner
Example: null
data.data[].linkstringoptional
Official copyright website URL
Example: null
data.data[].troCasebooleanoptional
Whether the copyright has a history of TRO enforcement
Example: false
data.data[].troHolderbooleanoptional
Whether the copyright belongs to a TRO rights holder
Example: false
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

{
  "imageUrl": "https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg",
  "enableRadar": false,
  "topNumber": 10
}

Example structuredContent

{
  "data": {
    "total": 1,
    "data": [
      {
        "subRadarResult": 1,
        "copyrightUrl": "https://example.com/image.jpg",
        "troCase": false,
        "troHolder": false
      }
    ],
    "detectId": "example-id",
    "columns": [],
    "costToken": 1
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}