Nexscope

TikTok / Social Commerce

TikTok Product Image Search MCP Tool

Provider business records for TikTok Product Image Search. Known row fields: id, product_name, product_images, floor_price, ceiling_price, product_gmv. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.

MCP tool name
nexscope_chuhaijiang_tiktok_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": "chuhaijiang-tiktok-product-image-search-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_chuhaijiang_tiktok_product_image_search",
    "arguments": {
      "osKey": "returned-key",
      "country": "US"
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-product-image-search

Arguments

NameTypeRequiredMeaning
osKeystringrequired
ossKey from a completed Nexscope Skill Asset upload and confirmation; obtain this value before calling.
Example: returned-key
countrystringoptional
Uppercase two-letter market code.
Example: US

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

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.request_idstring | nulloptional
Request id value used by this API operation.
data.dataobject | nulloptional
Data value used by this API operation.
data.data.itemsarray | nulloptional
Provider business records for TikTok Product Image Search. Known row fields: id, product_name, product_images, floor_price, ceiling_price, product_gmv. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.
data.data.items[]object | nullrequired
Item in data data items.
data.data.items[].idanyoptional
Source-documented id; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].product_nameanyoptional
Source-documented product_name; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].product_imagesanyoptional
Source-documented product_images; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].floor_priceanyoptional
Source-documented floor_price; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].ceiling_priceanyoptional
Source-documented ceiling_price; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].product_gmvanyoptional
Source-documented product_gmv; may be absent or null. Preserve the provider value and original monetary units.
data.data.total_countinteger | nulloptional
Total matching records.

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "osKey": "returned-key",
  "country": "US"
}

Example structuredContent

{
  "data": {
    "data": {
      "items": [
        {
          "id": null,
          "product_name": null,
          "product_images": null
        }
      ]
    }
  },
  "code": 0,
  "msg": "ok",
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}