TikTok / Social Commerce

TikTok Livestream Analytics MCP Tool

Search TikTok e-commerce livestream leaderboards via Kalodata and query detailed data for specific livestreams. Supports viewing high-ranking, high-sales TikTok shopping livestreams by region, currency, language, and date range, and using livestreamId to retrieve revenue, viewers, duration, GPM, and number of products sold.

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

Arguments

NameTypeRequiredMeaning
regionstringoptional
Region/market code, e.g., US. Max length 1000
Example: US
dateRangestringoptional
Time range, e.g., last7Day (last 7 days), last30Day (last 30 days). Max length 1000
Example: last30Day
pageNumberintegeroptional
Page number, value range 1-5 (out of range returns errcode 501)
Example: 1
pageSizeintegeroptional
Items per page, value range 5-100
Example: 10
languagestringoptional
Return language, e.g., zh-CN, en-US. Max length 1000
Example: {}
currencystringoptional
Currency unit, e.g., USD. Max length 1000
Example: {}
sortFieldobjectoptional
Sort criteria, structure defined by the gateway; pass an empty object {} for default rank order when not sorting
Example: {}
livestreamIdstringoptional
Target livestream unique ID (camelCase), e.g., 7661409374878878494. Typically obtained from the livestream_id in the livestream rank endpoint. Max length 1000
Example: {}

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
errcodeintegeroptional
Business status code, 200 indicates success
Example: 1
dataarrayoptional
Livestream rank list or livestream detail data
Example: []
costTokenintegeroptional
Tokens consumed for this call, fixed at 14000
Example: 1
errmsgstringoptional
Status message, ok on success
Example: {}
data[].livestream_start_timeintegeroptional
Livestream start time (epoch milliseconds)
Example: 1
data[].livestream_end_timeintegeroptional
Livestream end time (epoch milliseconds)
Example: 1
data[].livestream_durationintegeroptional
Livestream duration (seconds)
Example: 1
data[].livestream_titlestringoptional
Livestream title
Example: {}
data[].livestream_idstringoptional
Livestream unique ID (string, to avoid large integer precision loss); can be used as livestreamId in the detail endpoint
Example: example-id
data[].creator_idstringoptional
Creator unique ID (string, to avoid large integer precision loss)
Example: example-id
data[].creator_handlestringoptional
Creator account handle
Example: {}
data[].revenuestringoptional
Total revenue / GMV (in the requested currency; returned as string, e.g., "185590.52")
Example: {}
data[].unit_pricestringoptional
Unit price (in the requested currency; returned as string, e.g., "265.89")
Example: {}
data[].viewsintegeroptional
View count
Example: 1
data[].record_typestringoptional
Record type (e.g., SHORT)
Example: {}
data[].viewersintegeroptional
Viewer count (note: DETAIL uses viewers, RANK uses views)
Example: 1
data[].gpmnumberoptional
GMV per mille, number type -- unique to DETAIL, not present in the RANK endpoint
Example: 1
data[].product_numberintegeroptional
Product count in the livestream
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

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

Example structuredContent

{
  "errcode": 1,
  "data": [
    {
      "livestream_start_time": 1,
      "livestream_end_time": 1,
      "livestream_duration": 1,
      "livestream_id": "example-id",
      "creator_id": "example-id",
      "views": 1,
      "viewers": 1,
      "gpm": 1,
      "product_number": 1
    }
  ],
  "costToken": 1
}