Temu Marketplace Intelligence
GeekBI Temu Category List MCP Tool
Return provider category records without inventing search pagination fields.
MCP tool name
nexscope_geekbi_temu_category_listLegacy MCP endpoint
/api/skill-api/v1/mcpJSON-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": "geekbi-temu-category-list-1",
"method": "tools/call",
"params": {
"name": "nexscope_geekbi_temu_category_list",
"arguments": {}
}
}Legacy endpoint
POST /api/skill-api/v1/mcpCanonical detail URL
https://www.nexscope.ai/mcp-map/geekbi-temu-category-listArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
parentCatId | integer | optional | Known nonnegative category ID; omit for top-level categories Example: 27011 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Description |
|---|---|---|---|
data | any | required | Data value used by this API operation. |
code | integer | required | 0 means accepted or successful; nonzero is a platform error. |
msg | string | null | required | Msg value used by this API operation. |
ts | string | required | Epoch milliseconds. |
time | string | required | Server local time: yyyy-MM-dd HH:mm:ss. |
cost | string | required | Elapsed milliseconds, never credits; -1 outside web requests. |
traceId | string | null | required | Trace id value used by this API operation. |
Any of option 1
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.total | integer | null | optional | Number of returned records. |
data.columns | array | null | optional | Provider render column metadata. |
data.columns[] | any | required | Item in data columns. |
data.title | string | null | optional | Provider render/source metadata. |
data.type | string | null | optional | Provider render/source metadata. |
data.sourceType | string | null | optional | Provider render/source metadata. |
data.sourceTool | string | null | optional | Provider render/source metadata. |
data.categories | array | null | optional | Category tree nodes. |
data.categories[] | object | required | Item in data categories. |
data.categories[].catId | integer | null | optional | Provider identifier; searches use regionId and known category IDs. |
data.categories[].catLevel | integer | null | optional | Provider identifier; searches use regionId and known category IDs. |
data.categories[].parentCatId | integer | null | optional | Provider identifier; searches use regionId and known category IDs. |
data.categories[].catName | string | null | optional | Provider catName. |
data.categories[].isLeaf | boolean | null | optional | Whether this category is a leaf. |
data.parentCatId | integer | null | optional | Supplied parent category ID, if present. |
Any of option 2
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |
Examples
Example arguments
{}Example structuredContent
{
"data": {
"columns": [],
"categories": [],
"total": 0
},
"code": 0,
"msg": "ok",
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}