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_search
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/chuhaijiang-tiktok-product-search/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": "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/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-product-search

Arguments

NameTypeRequiredMeaning
countrystringrequired
Lowercase TikTok market code.
Example: us
pageintegeroptional
Page number, starting at 1.
Example: 1
pageSizeintegeroptional
Maximum records per page.
Example: 5
keywordstringoptional
Product search keyword.
Example: beauty
categorystringoptional
Product category ID.
Example: {}
sellerTypestringoptional
Seller type: 1 overseas non-brand, 2 local, 3 brand, 4 non-brand.
Example: 2
freeShippingbooleanoptional
Filter by free shipping availability.
Example: true
sortstringoptional
Provider sort field and direction (field:asc or field:desc).
Example: gmv_7d:desc
minPricenumberoptional
Minimum price in USD.
Example: {}
maxPricenumberoptional
Maximum price in USD.
Example: {}
minRatingnumberoptional
Minimum product rating.
Example: 4
maxRatingnumberoptional
Maximum product rating.
Example: {}
minSold7dnumberoptional
Minimum 7-day sales.
Example: {}
maxSold7dnumberoptional
Maximum 7-day sales.
Example: {}
minSold30dnumberoptional
Minimum 30-day sales.
Example: {}
maxSold30dnumberoptional
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
      }
    ]
  }
}