Patent & IP Risk

Ruiguan Trademark Graphic Detection MCP Tool

Detect graphic trademarks in product images by comparing against registered trademark databases across 15 major trademark offices using YOLO-based object detection and visual similarity.

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

Arguments

NameTypeRequiredMeaning
imageUrlstringrequired
产品图片URL或base64编码的图片数据(最大1000字符)
Example: https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg
topNumberintegerrequired
返回YOLO坐标的最大数量,默认 5,最大 100。实际返回数量可能少于传参数量
Example: 1
productTitlestringoptional
产品标题,用于上下文感知检测(最大1000字符)
Example: {}
trademarkNamestringoptional
可能的图形logo名称,用于缩小检索范围(最大1000字符)
Example: {}
regionsstringoptional
需要检测的国家/地区代码,多个时使用逗号隔开,不传默认全部国家。可选值:US(美国)、WO(世界知识产权)、ES(西班牙)、GB(英国)、DE(德国)、IT(意大利)、CA(加拿大)、MX(墨西哥)、EM(欧盟)、AU(澳大利亚)、FR(法国)、JP(日本)、TR(土耳其)、BX(玻利维亚)、CN(中国)
Example: US
enableLocalizingbooleanoptional
是否开启切图,默认 false
Example: false
enableRadarbooleanoptional
是否开启雷达监测,默认 true
Example: false

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
boundingBoxCountintegeroptional
检测结果数量
Example: 1
data[].radarResultstringoptional
雷达检测结果
Example: {}
totalintegeroptional
记录数
Example: 1
dataarrayoptional
检测结果列表(详见下方)
Example: []
detectIdstringoptional
检测ID
Example: example-id
columnsarrayoptional
渲染的列定义
Example: []
costTokenintegeroptional
消耗token
Example: 1
typestringoptional
渲染的样式
Example: {}
data[].imagestringoptional
匹配的商标图片地址
Example: https://example.com/image.jpg
data[].boundingBoxstringoptional
YOLO坐标(逗号隔开)
Example: {}
data[].subRadarResultstringoptional
子雷达检测结果
Example: {}
data[].applicationNumberstringoptional
申请号
Example: {}
data[].niceClassNamestringoptional
尼斯分类名称(逗号隔开)
Example: {}
data[].applicantNamestringoptional
权利人(逗号隔开)
Example: {}
data[].tradeMarkStatusstringoptional
商标状态,枚举值:"DEL"、"ended"、"registered"、"act"、"pend"、"filed"、""
Example: {}
data[].niceClassarrayoptional
尼斯分类详情
Example: []
data[].similaritynumberoptional
相似度(0到1,值越高越相似)
Example: 1
data[].registrationNumberstringoptional
注册号
Example: {}
data[].registrationOfficeCodestringoptional
商标受理局
Example: {}
data[].registrationDatestringoptional
注册日期
Example: 2026-01-01
data[].bidstringoptional
logo标识
Example: example-id
data[].trademarkNamestringoptional
图片中的文字商标名称
Example: {}
data[].applicationDatestringoptional
申请日期
Example: 2026-01-01
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: {}
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

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

Example structuredContent

{
  "boundingBoxCount": 1,
  "total": 1,
  "data": [
    {
      "image": "https://example.com/image.jpg",
      "niceClass": [],
      "similarity": 1,
      "registrationDate": "2026-01-01",
      "bid": "example-id",
      "applicationDate": "2026-01-01"
    }
  ],
  "detectId": "example-id",
  "columns": [],
  "costToken": 1
}