TikTok / Social Commerce
TikTok Video Rank MCP Tool
Returns normalized public ecommerce research data with a fixed read-only provider path.
MCP tool name
nexscope_tiktok_video_rankEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/tiktok-video-rank/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-video-rank-1",
"method": "tools/call",
"params": {
"name": "nexscope_tiktok_video_rank",
"arguments": {
"date": "2026-08-26",
"pageSize": 10,
"rankType": 1,
"videoRankField": 1,
"region": "US",
"pageNum": 1
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/tiktok-video-rank/runCanonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-video-rankArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
date | string | required | Ranking date in YYYY-MM-DD format Example: 2026-08-26 |
rankType | integer | required | Ranking type: 1, 2, or 3 Example: 1 |
region | string | required | TikTok market region code Example: US |
videoRankField | integer | required | Video ranking field: 1 or 2 Example: 1 |
productCategoryId | string | optional | Optional product category ID Example: {} |
createdByAi | string | optional | Filter AI-created videos using the string true or false Example: {} |
pageNum | integer | optional | Page number, starting at 1 Example: 1 |
pageSize | integer | optional | Page size from 10 to 100 in multiples of 10 Example: 10 |
Response fields
Treat structuredContent as the programmatic API response payload.
No response field schema is defined for this tool.
Examples
Example arguments
{
"date": "2026-08-26",
"pageSize": 10,
"rankType": 1,
"videoRankField": 1,
"region": "US",
"pageNum": 1
}Example structuredContent
{
"videos": [
{
"region": "US",
"totalViewsCnt": 1,
"videoId": "example-video-id"
}
],
"total": 1
}