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_analyticsEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-livestream-analytics/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf 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/runCanonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-livestream-analyticsArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
region | string | optional | Region/market code, e.g., US. Max length 1000 Example: US |
dateRange | string | optional | Time range, e.g., last7Day (last 7 days), last30Day (last 30 days). Max length 1000 Example: last30Day |
pageNumber | integer | optional | Page number, value range 1-5 (out of range returns errcode 501) Example: 1 |
pageSize | integer | optional | Items per page, value range 5-100 Example: 10 |
language | string | optional | Return language, e.g., zh-CN, en-US. Max length 1000 Example: {} |
currency | string | optional | Currency unit, e.g., USD. Max length 1000 Example: {} |
sortField | object | optional | Sort criteria, structure defined by the gateway; pass an empty object {} for default rank order when not sorting Example: {} |
livestreamId | string | optional | 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.
| Name | Type | Required | Meaning |
|---|---|---|---|
errcode | integer | optional | Business status code, 200 indicates success Example: 1 |
data | array | optional | Livestream rank list or livestream detail data Example: [] |
costToken | integer | optional | Tokens consumed for this call, fixed at 14000 Example: 1 |
errmsg | string | optional | Status message, ok on success Example: {} |
data[].livestream_start_time | integer | optional | Livestream start time (epoch milliseconds) Example: 1 |
data[].livestream_end_time | integer | optional | Livestream end time (epoch milliseconds) Example: 1 |
data[].livestream_duration | integer | optional | Livestream duration (seconds) Example: 1 |
data[].livestream_title | string | optional | Livestream title Example: {} |
data[].livestream_id | string | optional | Livestream unique ID (string, to avoid large integer precision loss); can be used as livestreamId in the detail endpoint Example: example-id |
data[].creator_id | string | optional | Creator unique ID (string, to avoid large integer precision loss) Example: example-id |
data[].creator_handle | string | optional | Creator account handle Example: {} |
data[].revenue | string | optional | Total revenue / GMV (in the requested currency; returned as string, e.g., "185590.52") Example: {} |
data[].unit_price | string | optional | Unit price (in the requested currency; returned as string, e.g., "265.89") Example: {} |
data[].views | integer | optional | View count Example: 1 |
data[].record_type | string | optional | Record type (e.g., SHORT) Example: {} |
data[].viewers | integer | optional | Viewer count (note: DETAIL uses viewers, RANK uses views) Example: 1 |
data[].gpm | number | optional | GMV per mille, number type -- unique to DETAIL, not present in the RANK endpoint Example: 1 |
data[].product_number | integer | optional | Product count in the livestream Example: 1 |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
type | string | optional | Provider-specific render or payload type. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | 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
}