Nexscope

Amazon Marketplace Intelligence

Reverse Product Image Search MCP Tool

Runs the server-side image-search and enrichment workflow without exposing local file paths or intermediate artifacts.

MCP tool name
nexscope_reverse_product_image_search
Legacy MCP endpoint
/api/skill-api/v1/mcp
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": "reverse-product-image-search-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_reverse_product_image_search",
    "arguments": {
      "amazonDomain": "amazon.com",
      "topN": 20,
      "imageUrl": "https://m.media-amazon.com/images/I/31SkgVLWSuL._SL75_.jpg"
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/reverse-product-image-search

Arguments

NameTypeRequiredMeaning
imageUrlstringrequired
Publicly accessible product image URL.
Example: https://m.media-amazon.com/images/I/31SkgVLWSuL._SL75_.jpg
amazonDomainstringrequired
Amazon marketplace domain.
Example: amazon.com
topNintegeroptional
Maximum number of ranked matches to return after enrichment.
Example: 20
sortstringoptional
Optional provider sort mode.
Example: rating-desc-rank

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 — requires query, matches

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.queryobjectrequired
Normalized image-search query.
Example: {}
data.matchesarrayrequired
Visually similar Amazon products, optionally enriched with marketplace metrics.
Example: []
data.matches[].rankintegeroptional
Backend-normalized result rank.
Example: 1
data.matches[].asinstringoptional
Amazon product ASIN.
Example: B072MQ5BRX
data.matches[].titlestringoptional
Product title.
Example: Example product
data.matches[].imageUrlstringoptional
Matched product image URL.
Example: https://example.com/image.jpg
data.matches[].pricenumberoptional
Current marketplace price.
Example: 29.99
data.matches[].ratingnumberoptional
Amazon rating.
Example: 4.5
data.matches[].estimatedMonthlySalesintegeroptional
Provider-estimated monthly sales when available.
Example: 1200
data.caveatsarrayoptional
Limits on image similarity and provider estimates.
Example: []
data.typestringoptional
Provider-specific render or payload type.
Example: null
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.costTokenintegeroptional
Token cost reported by the upstream provider.
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

{
  "amazonDomain": "amazon.com",
  "topN": 20,
  "imageUrl": "https://m.media-amazon.com/images/I/31SkgVLWSuL._SL75_.jpg"
}

Example structuredContent

{
  "data": {
    "query": {},
    "matches": [
      {
        "rank": 1,
        "asin": "B072MQ5BRX",
        "title": "Example product",
        "imageUrl": "https://example.com/image.jpg",
        "price": 29.99,
        "rating": 4.5,
        "estimatedMonthlySales": 1200
      }
    ],
    "caveats": []
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}