TikTok / Social Commerce
TikTok Live Search MCP Tool
TikTok Live Search. Execute only this operation; no automatic retries or pagination. Preserve provider fields and metric units.
MCP tool name
nexscope_chuhaijiang_tiktok_live_searchLegacy MCP endpoint
/api/skill-api/v1/mcpJSON-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": "chuhaijiang-tiktok-live-search-1",
"method": "tools/call",
"params": {
"name": "nexscope_chuhaijiang_tiktok_live_search",
"arguments": {
"country": "us",
"pageSize": 3,
"page": 1
}
}
}Legacy endpoint
POST /api/skill-api/v1/mcpCanonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-live-searchArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
country | string | required | Lowercase request market. Returned country_code may differ; preserve both. Example: us |
page | integer | optional | Page number, starting at 1. No automatic pagination. Example: 1 |
pageSize | integer | optional | Items per page, from 1 to 10. Omission preserves the upstream default. Example: 3 |
keyword | string | optional | Livestream keyword. Example: beauty |
category | string | optional | Provider-approved livestream category; no enum is published. Example: |
productCategory | string | optional | Provider-approved product category. Example: |
isLiving | boolean | optional | Filter currently live rooms. Example: true |
isCommercial | boolean | optional | Filter rooms promoting products. Example: true |
minSold | number | optional | Provider filter value; retain the provider metric definition without unit conversion. Example: 0 |
maxSold | number | optional | Provider filter value; retain the provider metric definition without unit conversion. Example: 0 |
minGmv | number | optional | Provider filter value; retain the provider metric definition without unit conversion. Example: 0 |
maxGmv | number | optional | Provider filter value; retain the provider metric definition without unit conversion. Example: 0 |
minAudience | number | optional | Provider filter value; retain the provider metric definition without unit conversion. Example: 0 |
maxAudience | number | optional | Provider filter value; retain the provider metric definition without unit conversion. Example: 0 |
sort | string | optional | Provider-approved field followed by :asc or :desc. No complete field enum is published. Example: gmv:desc |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Description |
|---|---|---|---|
data | any | required | Data value used by this API operation. |
code | integer | required | 0 means accepted or successful; nonzero is a platform error. |
msg | string | null | required | Msg value used by this API operation. |
ts | string | required | Epoch milliseconds. |
time | string | required | Server local time: yyyy-MM-dd HH:mm:ss. |
cost | string | required | Elapsed milliseconds, never credits; -1 outside web requests. |
traceId | string | null | required | Trace id value used by this API operation. |
Any of option 1
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.request_id | string | optional | Request id value used by this API operation. |
data.data | object | optional | Data value used by this API operation. |
data.data.items | array | optional | Items value used by this API operation. |
data.data.items[] | object | required | Item in data data items. |
data.data.items[].id | string | optional | Livestream identity: id. |
data.data.items[].title | string | optional | Livestream identity: title. |
data.data.items[].room_link | string | optional | Livestream identity: room link. |
data.data.items[].user_id | string | optional | Livestream identity: user id. |
data.data.items[].user_nickname | string | optional | Livestream identity: user nickname. |
data.data.items[].country_code | string | optional | Livestream identity: country code. |
data.data.items[].most_product_category_label | string | optional | Livestream identity: most product category label. |
data.data.items[].start_time | integer | optional | Unix timestamp in milliseconds: start time. |
data.data.items[].end_time | integer | optional | Unix timestamp in milliseconds: end time. |
data.data.items[].cover | object | optional | Image object with url and thumb_url: cover. |
data.data.items[].user_unique_id | string | optional | Host identity: user unique id. |
data.data.items[].user_category_label | string | optional | Host identity: user category label. |
data.data.items[].product_count | integer | optional | Livestream performance count: product count. |
data.data.items[].total_sold_count | integer | optional | Livestream performance count: total sold count. |
data.data.items[].total_user | integer | optional | Livestream performance count: total user. |
data.data.items[].max_user_count | integer | optional | Livestream performance count: max user count. |
data.data.items[].new_follow_count | integer | optional | Livestream performance count: new follow count. |
data.data.items[].gmv | object | optional | Monetary metric preserving original unit and value: gmv. |
data.data.items[].gpm | object | optional | Monetary metric preserving original unit and value: gpm. |
data.data.items[].opm | number | optional | Orders per thousand viewers: opm. |
data.data.total_count | integer | optional | Total count value used by this API operation. |
Any of option 2
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |
Examples
Example arguments
{
"country": "us",
"pageSize": 3,
"page": 1
}Example structuredContent
{
"data": {
"data": {
"items": [],
"total_count": 0
}
},
"code": 0,
"msg": "ok",
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}