Nexscope

TikTok / Social Commerce

TikTok Shop Related Products MCP Tool

Provider business records for TikTok Shop Related Products. Known row fields: id, tiktok_seller_product_product_id, tiktok_seller_product_product_name, tiktok_seller_product_product_gmv. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.

MCP tool name
nexscope_chuhaijiang_tiktok_shop_related_products
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-shop-related-products-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_chuhaijiang_tiktok_shop_related_products",
    "arguments": {
      "country": "us",
      "id": "7495205878591949358",
      "page": 1,
      "pageSize": 5
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-shop-related-products

Arguments

NameTypeRequiredMeaning
countrystringrequired
Lowercase TikTok market code.
Example: us
pageintegeroptional
Page number, starting at 1.
Example: 1
pageSizeintegeroptional
Maximum records per page.
Example: 5
idstringrequired
Shop ID, preserved as a string.
Example: 7495205878591949358

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 Shop Related Products. Known row fields: id, tiktok_seller_product_product_id, tiktok_seller_product_product_name, tiktok_seller_product_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[].tiktok_seller_product_product_idanyoptional
Source-documented tiktok_seller_product_product_id; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].tiktok_seller_product_product_nameanyoptional
Source-documented tiktok_seller_product_product_name; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].tiktok_seller_product_product_gmvanyoptional
Source-documented tiktok_seller_product_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

{
  "country": "us",
  "id": "7495205878591949358",
  "page": 1,
  "pageSize": 5
}

Example structuredContent

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