Nexscope

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_search
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-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/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-live-search

Arguments

NameTypeRequiredMeaning
countrystringrequired
Lowercase request market. Returned country_code may differ; preserve both.
Example: us
pageintegeroptional
Page number, starting at 1. No automatic pagination.
Example: 1
pageSizeintegeroptional
Items per page, from 1 to 10. Omission preserves the upstream default.
Example: 3
keywordstringoptional
Livestream keyword.
Example: beauty
categorystringoptional
Provider-approved livestream category; no enum is published.
Example:
productCategorystringoptional
Provider-approved product category.
Example:
isLivingbooleanoptional
Filter currently live rooms.
Example: true
isCommercialbooleanoptional
Filter rooms promoting products.
Example: true
minSoldnumberoptional
Provider filter value; retain the provider metric definition without unit conversion.
Example: 0
maxSoldnumberoptional
Provider filter value; retain the provider metric definition without unit conversion.
Example: 0
minGmvnumberoptional
Provider filter value; retain the provider metric definition without unit conversion.
Example: 0
maxGmvnumberoptional
Provider filter value; retain the provider metric definition without unit conversion.
Example: 0
minAudiencenumberoptional
Provider filter value; retain the provider metric definition without unit conversion.
Example: 0
maxAudiencenumberoptional
Provider filter value; retain the provider metric definition without unit conversion.
Example: 0
sortstringoptional
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.

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_idstringoptional
Request id value used by this API operation.
data.dataobjectoptional
Data value used by this API operation.
data.data.itemsarrayoptional
Items value used by this API operation.
data.data.items[]objectrequired
Item in data data items.
data.data.items[].idstringoptional
Livestream identity: id.
data.data.items[].titlestringoptional
Livestream identity: title.
data.data.items[].room_linkstringoptional
Livestream identity: room link.
data.data.items[].user_idstringoptional
Livestream identity: user id.
data.data.items[].user_nicknamestringoptional
Livestream identity: user nickname.
data.data.items[].country_codestringoptional
Livestream identity: country code.
data.data.items[].most_product_category_labelstringoptional
Livestream identity: most product category label.
data.data.items[].start_timeintegeroptional
Unix timestamp in milliseconds: start time.
data.data.items[].end_timeintegeroptional
Unix timestamp in milliseconds: end time.
data.data.items[].coverobjectoptional
Image object with url and thumb_url: cover.
data.data.items[].user_unique_idstringoptional
Host identity: user unique id.
data.data.items[].user_category_labelstringoptional
Host identity: user category label.
data.data.items[].product_countintegeroptional
Livestream performance count: product count.
data.data.items[].total_sold_countintegeroptional
Livestream performance count: total sold count.
data.data.items[].total_userintegeroptional
Livestream performance count: total user.
data.data.items[].max_user_countintegeroptional
Livestream performance count: max user count.
data.data.items[].new_follow_countintegeroptional
Livestream performance count: new follow count.
data.data.items[].gmvobjectoptional
Monetary metric preserving original unit and value: gmv.
data.data.items[].gpmobjectoptional
Monetary metric preserving original unit and value: gpm.
data.data.items[].opmnumberoptional
Orders per thousand viewers: opm.
data.data.total_countintegeroptional
Total count value used by this API operation.

Any of option 2

NameTypeRequiredDescription
datanullrequired
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
}