Temu Marketplace Intelligence
Temu Store Source Query MCP Tool
Filter Temu stores by multiple dimensions (store name/ID, country site, backend category, fully-managed/semi-managed, total/weekly/monthly sales and revenue, rating, reviews, followers, product count, store opening time, etc.).
MCP tool name
nexscope_temu_store_source_queryEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/temu-store-source-query/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": "temu-store-source-query-1",
"method": "tools/call",
"params": {
"name": "nexscope_temu_store_source_query",
"arguments": {
"keyword": "phone case",
"pageSize": 10,
"page": 1
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/temu-store-source-query/runCanonical detail URL
https://www.nexscope.ai/mcp-map/temu-store-source-queryArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
searchKey | string | optional | Store name or ID keyword Example: {} |
siteId | string | optional | Country site ID, multiple separated by commas (e.g., 211=US, 76=UK) Example: example-id |
category | string | optional | Backend category ID, multiple separated by commas Example: {} |
isLocal | string | optional | Whether semi-managed: 0=fully managed, 1=semi-managed Example: {} |
orderTotalMin | integer | optional | Total sales range (start) Example: 1 |
orderTotalMax | integer | optional | Total sales range (end) Example: 1 |
orderWeekMin | integer | optional | Weekly sales range (start) Example: 1 |
orderWeekMax | integer | optional | Weekly sales range (end) Example: 1 |
orderMonthMin | integer | optional | Monthly sales range (start) Example: 1 |
orderMonthMax | integer | optional | Monthly sales range (end) Example: 1 |
totalRevenueMin | number | optional | Total revenue range (USD, start) Example: 1 |
totalRevenueMax | number | optional | Total revenue range (USD, end) Example: 1 |
weekRevenueMin | number | optional | Weekly revenue range (USD, start) Example: 1 |
weekRevenueMax | number | optional | Weekly revenue range (USD, end) Example: 1 |
monthRevenueMin | number | optional | Monthly revenue range (USD, start) Example: 1 |
monthRevenueMax | number | optional | Monthly revenue range (USD, end) Example: 1 |
ratingMin | number | optional | Rating range (start) Example: 1 |
ratingMax | number | optional | Rating range (end) Example: 1 |
reviewNumMin | integer | optional | Review count range (start) Example: 1 |
reviewNumMax | integer | optional | Review count range (end) Example: 1 |
followerNumMin | integer | optional | Follower count range (start) Example: 1 |
followerNumMax | integer | optional | Follower count range (end) Example: 1 |
productNumMin | integer | optional | Product count range (start) Example: 1 |
productNumMax | integer | optional | Product count range (end) Example: 1 |
listedTimeBegin | string | optional | Store opening date range (start) Example: {} |
listedTimeEnd | string | optional | Store opening date range (end) Example: {} |
sortBy | string | optional | Sort field+direction: order_week_count-0 (weekly sales descending, default), order_count-0, total_revenue-0, rating-0 Example: {} |
page | integer | optional | Page number (starting from 1) Example: 1 |
pageSize | integer | optional | Items per page, max 100 Example: 1 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | Number of records on this page Example: 1 |
storeNum | integer | optional | Total number of stores matching criteria (upstream store_num) Example: 1 |
stores | array | optional | Temu store list Example: [] |
columns | array | optional | Rendered columns Example: [] |
title | string | optional | Title (Temu Store Query) Example: {} |
sourceType | string | optional | Source type: temu Example: {} |
sourceTool | string | optional | Tool type: ehunt Example: {} |
type | string | optional | Render style: tableListWorkbenches Example: {} |
stores[].storeId | string | optional | Store ID Example: example-id |
stores[].siteId | string | optional | Country site ID Example: example-id |
stores[].storeName | string | optional | Store name Example: {} |
stores[].logoUrl | string | optional | Store logo URL Example: https://example.com/image.jpg |
stores[].orderTotal | string | optional | Total sales Example: {} |
stores[].orderWeek | string | optional | Weekly sales Example: {} |
stores[].orderMonth | string | optional | Monthly sales Example: {} |
stores[].totalRevenue | string | optional | Total revenue Example: {} |
stores[].weekRevenue | string | optional | Weekly revenue Example: {} |
stores[].monthRevenue | string | optional | Monthly revenue Example: {} |
stores[].rating | string | optional | Rating Example: {} |
stores[].listedTime | string | optional | Store opening time Example: {} |
stores[].reviewNum | string | optional | Review count Example: {} |
stores[].followerNum | string | optional | Follower count Example: {} |
stores[].productNum | string | optional | Product count Example: {} |
stores[].categoriesCn | string | optional | Chinese category list Example: {} |
stores[].categories | string | optional | English category list Example: {} |
stores[].isLocal | string | optional | Whether semi-managed: 0=fully managed, 1=semi-managed Example: {} |
errcode | integer | optional | Upstream status code returned by the provider. Example: {} |
errmsg | string | optional | Upstream status message returned by the provider. Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
costToken | integer | optional | Token cost reported by the upstream provider. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"keyword": "phone case",
"pageSize": 10,
"page": 1
}Example structuredContent
{
"total": 1,
"storeNum": 1,
"stores": [
{
"storeId": "example-id",
"siteId": "example-id",
"logoUrl": "https://example.com/image.jpg"
}
],
"columns": []
}