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_detectionEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ruiguan-copyright-detection/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf 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",
"topNumber": 10,
"enableRadar": false
}
}
}REST API equivalent
POST https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ruiguan-copyright-detection/runCanonical detail URL
https://www.nexscope.ai/mcp-map/ruiguan-copyright-detectionArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
imageUrl | string | required | URL of the copyrighted image to inspect (maximum 1,000 characters) Example: https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg |
topNumber | integer | required | Maximum number of matches to return (default 100, minimum 10, maximum 200) Example: 10 |
enableRadar | boolean | required | Whether to enable radar detection (default true) Example: false |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | Number of records Example: 1 |
data | array | optional | Detection results; see the fields below Example: [] |
detectId | string | optional | Detection ID Example: example-id |
columns | array | optional | Column definitions used for rendering Example: [] |
costToken | integer | optional | Tokens consumed Example: 1 |
type | string | optional | Rendering style Example: {} |
data[].path | string | optional | Path to the copyrighted artwork Example: {} |
data[].pathThumb | string | optional | Thumbnail path for the copyrighted artwork Example: {} |
data[].similarity | string | optional | Similarity score Example: {} |
data[].subRadarResult | integer | optional | Radar result: 1 means infringement, 0 means no infringement, and null means radar detection was not performed Example: 1 |
data[].copyrightUrl | string | optional | Source URL Example: https://example.com/image.jpg |
data[].copyrightCode | string | optional | Copyright identifier Example: {} |
data[].rightsOwner | string | optional | Rights owner Example: {} |
data[].link | string | optional | Official copyright website URL Example: {} |
data[].troCase | boolean | optional | Whether the copyright has a history of TRO enforcement Example: false |
data[].troHolder | boolean | optional | Whether the copyright belongs to a TRO rights holder Example: false |
errcode | integer | optional | Upstream status code returned by the provider. Example: {} |
errmsg | string | optional | Upstream status message returned by the provider. Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"imageUrl": "https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg",
"topNumber": 10,
"enableRadar": false
}Example structuredContent
{
"total": 1,
"data": [
{
"subRadarResult": 1,
"copyrightUrl": "https://example.com/image.jpg",
"troCase": false,
"troHolder": false
}
],
"detectId": "example-id",
"columns": [],
"costToken": 1
}