TikTok / Social Commerce
Chuhaijiang TikTok Product Search MCP Tool
Provider business records for Chuhaijiang TikTok Product Search. Known row fields: id, product_name, product_images, floor_price, ceiling_price, product_rating, product_sold_count, product_gmv, seller_id, shop_name. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.
MCP tool name
nexscope_chuhaijiang_tiktok_product_searchEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/chuhaijiang-tiktok-product-search/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": "chuhaijiang-tiktok-product-search-1",
"method": "tools/call",
"params": {
"name": "nexscope_chuhaijiang_tiktok_product_search",
"arguments": {
"country": "us",
"keyword": "beauty",
"minRating": 4,
"freeShipping": true,
"pageSize": 5
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/chuhaijiang-tiktok-product-search/runCanonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-product-searchArguments
| 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: 5 |
keyword | string | optional | Product search keyword. Example: beauty |
category | string | optional | Product category ID. Example: {} |
sellerType | string | optional | Seller type: 1 overseas non-brand, 2 local, 3 brand, 4 non-brand. Example: 2 |
freeShipping | boolean | optional | Filter by free shipping availability. Example: true |
sort | string | optional | Provider sort field and direction (field:asc or field:desc). Example: gmv_7d:desc |
minPrice | number | optional | Minimum price in USD. Example: {} |
maxPrice | number | optional | Maximum price in USD. Example: {} |
minRating | number | optional | Minimum product rating. Example: 4 |
maxRating | number | optional | Maximum product rating. Example: {} |
minSold7d | number | optional | Minimum 7-day sales. Example: {} |
maxSold7d | number | optional | Maximum 7-day sales. Example: {} |
minSold30d | number | optional | Minimum 30-day sales. Example: {} |
maxSold30d | number | optional | Maximum 30-day sales. Example: {} |
Response fields
Treat structuredContent as the programmatic API response payload.
No response field schema is defined for this tool.
Examples
Example arguments
{
"country": "us",
"keyword": "beauty",
"minRating": 4,
"freeShipping": true,
"pageSize": 5
}Example structuredContent
{
"errmsg": "ok",
"errcode": 200,
"data": {
"items": [
{
"id": null,
"product_name": null,
"product_images": null
}
]
}
}