TikTok / Social Commerce

TikTok Creator Analytics MCP Tool

Search TikTok e-commerce creator leaderboards via Kalodata and query detailed profiles for specific creators. Supports viewing top-performing influencer-sellers by region, currency, language, and date range, and using creatorId to retrieve follower count, video/live revenue and GPM, contact information, and associated shops.

MCP tool name
nexscope_tiktok_creator_analytics
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-creator-analytics/run
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": "tiktok-creator-analytics-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_tiktok_creator_analytics",
    "arguments": {
      "pageNumber": 1,
      "region": "US",
      "creatorId": "68616495085350913",
      "sortField": {},
      "dateRange": "last30Day",
      "pageSize": 10
    }
  }
}
REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-creator-analytics/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-creator-analytics

Arguments

NameTypeRequiredMeaning
regionstringoptional
Region/market code, e.g., US
Example: US
dateRangestringoptional
Time range, e.g., last7Day, last30Day
Example: last30Day
pageNumberintegeroptional
Page number, value range 1-5
Example: 1
pageSizeintegeroptional
Items per page, value range 5-100
Example: 10
languagestringoptional
Return language, e.g., zh-CN, en-US
Example: {}
currencystringoptional
Currency unit, e.g., USD
Example: {}
sortFieldobjectoptional
Sort criteria; pass an empty object {} for default rank order when not sorting
Example: {}
creatorIdstringoptional
Creator unique ID, e.g., 7153432386608251946, obtainable from the creator_id in the creator rank response
Example: 68616495085350913

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
errcodeintegeroptional
Business status code, 200 indicates success
Example: 1
dataarrayoptional
Rank or detail data
Example: []
costTokenintegeroptional
Tokens consumed for this call, typically 14000
Example: 1
errmsgstringoptional
Status message, ok on success
Example: {}
data[].creator_nicknamestringoptional
Creator nickname
Example: {}
data[].creator_handlestringoptional
TikTok profile name, e.g., @based
Example: {}
data[].creator_idstringoptional
Creator unique ID, string format to avoid large integer precision loss
Example: example-id
data[].creator_followersstringoptional
Follower count, returned as string
Example: {}
data[].content_viewsstringoptional
Total content views, returned as string
Example: {}
data[].sales_volumnintegeroptional
Sales volume, field spelled as volumn
Example: 1
data[].revenuenumberoptional
Total revenue / GMV, returned in the requested currency
Example: 1
data[].video_revenuenumberoptional
Short video sales revenue
Example: 1
data[].live_revenuenumberoptional
Livestream sales revenue
Example: 1
data[].revenue_growth_ratenumberoptional
Revenue growth rate (%), can be positive or negative
Example: 1
data[].creator_regionstringoptional
Creator region
Example: {}
data[].creator_statusstringoptional
Creator status
Example: {}
data[].creator_biostringoptional
Creator bio
Example: {}
data[].creator_belonged_shop_idstringoptional
Belonged shop ID
Example: example-id
data[].new_followersintegeroptional
New followers within the dateRange window
Example: 1
data[].unit_pricenumberoptional
Unit price
Example: 1
data[].video_numberintegeroptional
Video count within the window
Example: 1
data[].video_viewsintegeroptional
Total video views
Example: 1
data[].video_gpmnumberoptional
Video GPM
Example: 1
data[].live_numberintegeroptional
Livestream count within the window
Example: 1
data[].live_viewsintegeroptional
Total livestream views
Example: 1
data[].live_gpmnumberoptional
Livestream GPM
Example: 1
data[].product_numberintegeroptional
Associated product count
Example: 1
data[].shop_numberintegeroptional
Associated shop count
Example: 1
data[].creator_contact_emailstringoptional
Contact email
Example: {}
data[].creator_contact_insstringoptional
Instagram contact
Example: {}
data[].creator_contact_whatsappstringoptional
WhatsApp contact
Example: {}
data[].creator_contact_facebookstringoptional
Facebook contact
Example: {}
data[].creator_contact_tiktokstringoptional
TikTok contact
Example: {}
data[].creator_contact_zalostringoptional
Zalo contact
Example: {}
data[].creator_contact_linestringoptional
Line contact
Example: {}
codestringoptional
Provider-specific status code.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
typestringoptional
Provider-specific render or payload type.
Example: {}
titlestringoptional
Provider-specific response title.
Example: {}
sourceTypestringoptional
Provider-specific source platform type.
Example: {}
sourceToolstringoptional
Provider-specific source tool name.
Example: {}
costTimeintegeroptional
Execution time reported by the upstream provider.
Example: {}
pageintegeroptional
Current page returned by the upstream provider.
Example: {}
pageSizeintegeroptional
Page size returned by the upstream provider.
Example: {}
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: {}
totalPageintegeroptional
Total page count returned by the upstream provider.
Example: {}
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: {}

Examples

Example arguments

{
  "pageNumber": 1,
  "region": "US",
  "creatorId": "68616495085350913",
  "sortField": {},
  "dateRange": "last30Day",
  "pageSize": 10
}

Example structuredContent

{
  "errcode": 1,
  "data": [
    {
      "creator_id": "example-id",
      "sales_volumn": 1,
      "revenue": 1,
      "video_revenue": 1,
      "live_revenue": 1,
      "revenue_growth_rate": 1,
      "creator_belonged_shop_id": "example-id",
      "new_followers": 1,
      "unit_price": 1,
      "video_number": 1,
      "video_views": 1,
      "video_gpm": 1,
      "live_number": 1,
      "live_views": 1,
      "live_gpm": 1,
      "product_number": 1,
      "shop_number": 1
    }
  ],
  "costToken": 1
}