Temu Marketplace Intelligence

Temu Product Source Query MCP Tool

Filter Temu products by multiple dimensions (keyword/product ID/store ID, front/backend categories, price, rating, reviews, total/weekly/daily sales, listing date, fully-managed/semi-managed, semi-managed regions, tags, etc.).

MCP tool name
nexscope_temu_product_source_query
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/temu-product-source-query/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": "temu-product-source-query-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_temu_product_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-product-source-query/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/temu-product-source-query

Arguments

NameTypeRequiredMeaning
searchKeystringoptional
Keyword or product ID / store ID
Example: {}
categoryHomestringoptional
Front-end category ID
Example: {}
categoryBackendstringoptional
Back-end category ID
Example: {}
priceBeginnumberoptional
Price range start (USD), combined to form upstream price
Example: 1
priceEndnumberoptional
Price range end (USD)
Example: 1
ratingBeginnumberoptional
Rating range start, combined to form upstream rating
Example: 1
ratingEndnumberoptional
Rating range end
Example: 1
reviewsBeginintegeroptional
Review count range start, combined to form reviews
Example: 1
reviewsEndintegeroptional
Review count range end
Example: 1
salesTotalBeginintegeroptional
Total sales range start, combined to form sales_total
Example: 1
salesTotalEndintegeroptional
Total sales range end
Example: 1
salesWeeklyBeginintegeroptional
Weekly sales range start, combined to form sales_weekly
Example: 1
salesWeeklyEndintegeroptional
Weekly sales range end
Example: 1
salesDailyBeginintegeroptional
Daily sales range start, combined to form sales_daily
Example: 1
salesDailyEndintegeroptional
Daily sales range end
Example: 1
publishTimeBeginstringoptional
Listing date range start, combined to form publish_time
Example: {}
publishTimeEndstringoptional
Listing date range end
Example: {}
soldOutintegeroptional
Whether delisted: 0=Listed, 1=Delisted
Example: 1
isLocalintegeroptional
Whether semi-managed: 0=Fully managed, 1=Semi-managed
Example: 1
regionstringoptional
Semi-managed regions, comma-separated
Example: US
tagsstringoptional
Product tags, comma-separated
Example: {}
customTagsstringoptional
Custom tags, comma-separated
Example: {}
sortBystringoptional
Sort field+direction: order_week-0 (weekly sales descending, default), price-0, order_total-0, rating-0, etc.
Example: {}
pageintegeroptional
Page number (starting from 1)
Example: 1
pageSizeintegeroptional
Results per page, max 100, recommended not to exceed 50
Example: 1

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
totalintegeroptional
Number of results returned on this page
Example: 1
productNumintegeroptional
Total number of matching products (upstream product_num)
Example: 1
productsarrayoptional
Temu product list
Example: []
columnsarrayoptional
Columns for rendering
Example: []
titlestringoptional
Title (Temu Product Query)
Example: {}
sourceTypestringoptional
Source type: temu
Example: {}
sourceToolstringoptional
Tool type: ehunt
Example: {}
typestringoptional
Render style: tableListWorkbenches
Example: {}
products[].productIdstringoptional
Product ID
Example: example-id
products[].productNamestringoptional
Product name (English)
Example: {}
products[].productNameCnstringoptional
Product name (Chinese)
Example: {}
products[].logoUrlstringoptional
Main image URL
Example: https://example.com/image.jpg
products[].pricestringoptional
Price
Example: {}
products[].orderTotalstringoptional
Total sales
Example: {}
products[].orderWeekstringoptional
Weekly sales
Example: {}
products[].orderDaystringoptional
Daily sales
Example: {}
products[].orderMonthstringoptional
Monthly sales
Example: {}
products[].ratingstringoptional
Rating
Example: {}
products[].reviewNumstringoptional
Review count
Example: {}
products[].publishTimestringoptional
Listing time
Example: {}
products[].soldOutstringoptional
Whether delisted
Example: {}
products[].isLocalstringoptional
Whether semi-managed: 0=Fully managed, 1=Semi-managed
Example: {}
products[].localRegionstringoptional
Semi-managed region list
Example: {}
products[].storeIdstringoptional
Store ID
Example: example-id
products[].tagsstringoptional
Tag list
Example: {}
products[].customTagsstringoptional
Custom tags
Example: {}
products[].categoryHomestringoptional
Front-end category
Example: {}
products[].categoryBackendstringoptional
Back-end category
Example: {}
errcodeintegeroptional
Upstream status code returned by the provider.
Example: {}
errmsgstringoptional
Upstream status message returned by the provider.
Example: {}
codestringoptional
Provider-specific status code.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
costTokenintegeroptional
Token cost reported by the upstream provider.
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

{
  "keyword": "phone case",
  "pageSize": 10,
  "page": 1
}

Example structuredContent

{
  "total": 1,
  "productNum": 1,
  "products": [
    {
      "productId": "example-id",
      "logoUrl": "https://example.com/image.jpg",
      "storeId": "example-id"
    }
  ],
  "columns": []
}