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_search
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ruiguan-gun-parts-search/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-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 https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ruiguan-gun-parts-search/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/ruiguan-gun-parts-search

Arguments

NameTypeRequiredMeaning
imageUrlstringrequired
URL of the product image to inspect (maximum 1,000 characters)
Example: https://m.media-amazon.com/images/I/719mRAn2VrL._AC_SL1500_.jpg

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
totalintegeroptional
Number of records
Example: 1
dataarrayoptional
Detected policy-violating products; see the fields below
Example: []
detectIdstringoptional
Detection record ID
Example: example-id
columnsarrayoptional
Column definitions used for rendering
Example: []
costTokenintegeroptional
Tokens consumed
Example: 1
typestringoptional
Rendering style
Example: {}
data[].pdImgOssUrlstringoptional
Image URL of the matched policy-violating product
Example: https://example.com/image.jpg
data[].cosinenumberoptional
Similarity between the inspected product and the policy-violating product
Example: 1
data[].pdTitlestringoptional
Title of the matched policy-violating product
Example: {}
data[].pdTitleCHNCensoredstringoptional
Chinese title of the matched policy-violating product
Example: {}
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"
}

Example structuredContent

{
  "total": 1,
  "data": [
    {
      "pdImgOssUrl": "https://example.com/image.jpg",
      "cosine": 1
    }
  ],
  "detectId": "example-id",
  "columns": [],
  "costToken": 1
}