TikTok / Social Commerce
TikTok Product New Arrivals MCP Tool
Provider business records for TikTok Product New Arrivals. Known row fields: id, product_id, product_name, shop_name, total_gmv, total_sold_count. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.
MCP tool name
nexscope_chuhaijiang_tiktok_product_rankings_new_arrivalsLegacy 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-product-rankings-new-arrivals-1",
"method": "tools/call",
"params": {
"name": "nexscope_chuhaijiang_tiktok_product_rankings_new_arrivals",
"arguments": {
"country": "us",
"pageSize": 10
}
}
}Legacy endpoint
POST /api/skill-api/v1/mcpCanonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-product-rankings-new-arrivalsArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
country | string | required | Lowercase TikTok market code. Example: us |
page | integer | optional | Page number, starting at 1. Example: 1 |
pageSize | integer | optional | Maximum records per page. Example: 10 |
category | string | optional | Product category ID. Example: {} |
sellerType | string | optional | Seller type. Example: {} |
sort | string | optional | Provider sort field and direction (field:asc or field:desc). Example: gmv_3d:desc |
listedFrom | string | optional | Earliest listing date in YYYYMMDD format. Example: {} |
listedTo | string | optional | Latest listing date in YYYYMMDD format. Example: {} |
productStatus | string | optional | Provider product status. Example: {} |
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 | null | optional | Request id value used by this API operation. |
data.data | object | null | optional | Data value used by this API operation. |
data.data.items | array | null | optional | Provider business records for TikTok Product New Arrivals. Known row fields: id, product_id, product_name, shop_name, total_gmv, total_sold_count. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type. |
data.data.items[] | object | null | required | Item in data data items. |
data.data.items[].id | any | optional | Source-documented id; may be absent or null. Preserve the provider value and original monetary units. |
data.data.items[].product_id | any | optional | Source-documented product_id; may be absent or null. Preserve the provider value and original monetary units. |
data.data.items[].product_name | any | optional | Source-documented product_name; may be absent or null. Preserve the provider value and original monetary units. |
data.data.items[].shop_name | any | optional | Source-documented shop_name; may be absent or null. Preserve the provider value and original monetary units. |
data.data.items[].total_gmv | any | optional | Source-documented total_gmv; may be absent or null. Preserve the provider value and original monetary units. |
data.data.items[].total_sold_count | any | optional | Source-documented total_sold_count; may be absent or null. Preserve the provider value and original monetary units. |
data.data.total_count | integer | null | optional | Total matching records. |
Any of option 2
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |
Examples
Example arguments
{
"country": "us",
"pageSize": 10
}Example structuredContent
{
"data": {
"data": {
"items": [
{
"id": null,
"product_id": null,
"product_name": null
}
]
}
},
"code": 0,
"msg": "ok",
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}