TikTok / Social Commerce
Chuhaijiang TikTok Product Detail MCP Tool
Provider business records for Chuhaijiang TikTok Product Detail. Known row fields: id, product_id, product_name, product_images. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.
MCP tool name
nexscope_chuhaijiang_tiktok_product_detailEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/chuhaijiang-tiktok-product-detail/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-detail-1",
"method": "tools/call",
"params": {
"name": "nexscope_chuhaijiang_tiktok_product_detail",
"arguments": {
"country": "us",
"id": "1732052189676081387",
"include": "core,channel"
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/chuhaijiang-tiktok-product-detail/runCanonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-product-detailArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
country | string | required | Lowercase TikTok market code. Example: us |
id | string | required | Product ID, preserved as a string. Example: 1732052189676081387 |
include | string | optional | Comma-separated optional detail sections: core, channel. Example: core,channel |
Response fields
Treat structuredContent as the programmatic API response payload.
No response field schema is defined for this tool.
Examples
Example arguments
{
"country": "us",
"id": "1732052189676081387",
"include": "core,channel"
}Example structuredContent
{
"errmsg": "ok",
"errcode": 200,
"data": {
"items": [
{
"id": null,
"product_id": null,
"product_name": null
}
],
"channel": {
"items": [
{}
]
},
"core": {
"items": [
{
"product_gmv": null,
"product_sold_count": null
}
]
}
}
}