TikTok / Social Commerce

TikTok Product Analytics MCP Tool

Query TikTok e-commerce product leaderboards via Kalodata and query detailed data for specific products. Supports viewing high-ranking/hot-selling products by region, currency, language, and date range, and using productId to retrieve price range, sales, revenue, commission rate, listing/delisting time, and owning shop.

MCP tool name
nexscope_tiktok_product_analytics
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-product-analytics/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": "tiktok-product-analytics-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_tiktok_product_analytics",
    "arguments": {
      "productId": "1732505564636812173",
      "pageNumber": 1,
      "region": "US",
      "sortField": {},
      "dateRange": "last30Day",
      "pageSize": 10
    }
  }
}
REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-product-analytics/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-product-analytics

Arguments

NameTypeRequiredMeaning
regionstringoptional
TikTok Shop market region code, e.g., US. If not specified, defaults to the server default (usually US)
Example: US
dateRangestringoptional
Relative date range, e.g., last7Day, last30Day
Example: last30Day
currencystringoptional
Currency code, e.g., USD
Example: {}
languagestringoptional
Return language, e.g., zh-CN, en-US
Example: {}
sortFieldobjectoptional
Sort specification object; omitted to use default ranking
Example: {}
pageNumberintegeroptional
Page number, range 1-5
Example: 1
pageSizeintegeroptional
Items per page, range 5-100
Example: 10
productIdstringoptional
TikTok product ID, e.g., 1729508370969629931 (string format, to avoid large integer precision loss), obtainable from the product_id in the product rank response
Example: 1732505564636812173

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
errcodeintegeroptional
Business status code, 200 indicates success
Example: 1
dataarrayoptional
Rank or detail data
Example: []
costTokenintegeroptional
Tokens consumed for this call, typically 14000
Example: 1
errmsgstringoptional
Status message, ok on success
Example: {}
data[].product_idstringoptional
Product ID (string format, to avoid large integer precision loss); used as productId to query details
Example: example-id
data[].product_namestringoptional
Product title
Example: {}
data[].unit_pricenumberoptional
Unit price (currency depends on region, e.g., US means USD)
Example: 1
data[].sales_volumnintegeroptional
Sales volume (units). Note: the field name is spelled sales_volumn (as-is, not volume). Use this exact name when extracting with jq/ConvertFrom-Json
Example: 1
data[].revenuenumberoptional
Total revenue (GMV), = video_revenue + live_revenue + showcase_revenue
Example: 1
data[].video_revenuenumberoptional
Video channel revenue
Example: 1
data[].live_revenuenumberoptional
Livestream channel revenue
Example: 1
data[].showcase_revenuenumberoptional
Showcase/display channel revenue
Example: 1
data[].revenue_growth_ratenumberoptional
Revenue growth rate (percentage, e.g., 27.94 means 27.94%)
Example: 1
data[].commission_ratenumberoptional
Commission rate (percentage, e.g., 25.0 means 25%; not basis points)
Example: 1
data[].launch_datestringoptional
Launch date (YYYY-MM-DD)
Example: 2026-01-01
data[].product_regionstringoptional
Product region/market (e.g., us)
Example: {}
data[].product_shop_idstringoptional
Belonged shop ID
Example: example-id
data[].pri_cate_idstringoptional
Primary category ID
Example: example-id
data[].sec_cate_idstringoptional
Secondary category ID
Example: example-id
data[].ter_cate_idstringoptional
Tertiary category ID
Example: example-id
data[].min_pricenumberoptional
Minimum price (in the requested currency)
Example: 1
data[].max_pricenumberoptional
Maximum price (in the requested currency)
Example: 1
data[].product_review_countintegeroptional
Product review count
Example: 1
data[].delivery_typestringoptional
Delivery method (e.g., local)
Example: {}
data[].video_numberintegeroptional
Associated video count
Example: 1
data[].live_numberintegeroptional
Associated livestream count
Example: 1
data[].shopping_mall_revenuenumberoptional
Mall revenue (in the requested currency)
Example: 1
data[].creator_numberintegeroptional
Associated creator count
Example: 1
codestringoptional
Provider-specific status code.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
typestringoptional
Provider-specific render or payload type.
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

{
  "productId": "1732505564636812173",
  "pageNumber": 1,
  "region": "US",
  "sortField": {},
  "dateRange": "last30Day",
  "pageSize": 10
}

Example structuredContent

{
  "errcode": 1,
  "data": [
    {
      "product_id": "example-id",
      "unit_price": 1,
      "sales_volumn": 1,
      "revenue": 1,
      "video_revenue": 1,
      "live_revenue": 1,
      "showcase_revenue": 1,
      "revenue_growth_rate": 1,
      "commission_rate": 1,
      "launch_date": "2026-01-01",
      "product_shop_id": "example-id",
      "pri_cate_id": "example-id",
      "sec_cate_id": "example-id",
      "ter_cate_id": "example-id",
      "min_price": 1,
      "max_price": 1,
      "product_review_count": 1,
      "video_number": 1,
      "live_number": 1,
      "shopping_mall_revenue": 1,
      "creator_number": 1
    }
  ],
  "costToken": 1
}