Patent & IP Risk
Ruiguan Gun Parts Search MCP Tool
Check product images against a database of policy-violating items using visual similarity matching.
MCP tool name
nexscope_ruiguan_gun_parts_searchEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ruiguan-gun-parts-search/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-gun-parts-search-1",
"method": "tools/call",
"params": {
"name": "nexscope_ruiguan_gun_parts_search",
"arguments": {
"imageUrl": "https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg"
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ruiguan-gun-parts-search/runCanonical detail URL
https://www.nexscope.ai/mcp-map/ruiguan-gun-parts-searchArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
imageUrl | string | required | 待检测的产品图片URL(最大长度 1000 字符) Example: https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | 记录数 Example: 1 |
data | array | optional | 检测出的政策违规产品列表(详见下方) Example: [] |
detectId | string | optional | 检测记录 id Example: example-id |
columns | array | optional | 渲染的列 Example: [] |
costToken | integer | optional | 消耗token Example: 1 |
type | string | optional | 渲染的样式 Example: {} |
data[].pdImgOssUrl | string | optional | 匹配到的违规产品图片 URL Example: https://example.com/image.jpg |
data[].cosine | number | optional | 检测产品与违规产品相似度 Example: 1 |
data[].pdTitle | string | optional | 匹配到的违规产品标题 Example: {} |
data[].pdTitleCHNCensored | string | optional | 匹配到的违规产品中文标题 Example: {} |
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"
}Example structuredContent
{
"total": 1,
"data": [
{
"pdImgOssUrl": "https://example.com/image.jpg",
"cosine": 1
}
],
"detectId": "example-id",
"columns": [],
"costToken": 1
}