Nexscope

Product & Market Research

Mercado Product Selection MCP Tool

Validates the selected tool and its required arguments before calling the governed Lingdong gateway.

MCP tool name
nexscope_mercado_product_selection
Legacy MCP endpoint
/api/skill-api/v1/mcp
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": "mercado-product-selection-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_mercado_product_selection",
    "arguments": {
      "arguments": {
        "searchText": "Auriculares",
        "siteId": "MLM"
      },
      "toolName": "categorySearch"
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/mercado-product-selection

Arguments

NameTypeRequiredMeaning
toolNamestringrequired
Exact Mercado tool name.
Example: categorySearch
argumentsobjectrequired
Arguments for the selected tool.
Example: { "searchText": "Auriculares", "siteId": "MLM" }

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredDescription
dataanyrequired
Data value used by this API operation.
codeintegerrequired
0 means accepted or successful; nonzero is a platform error.
msgstring | nullrequired
Msg value used by this API operation.
tsstringrequired
Epoch milliseconds.
timestringrequired
Server local time: yyyy-MM-dd HH:mm:ss.
coststringrequired
Elapsed milliseconds, never credits; -1 outside web requests.
traceIdstring | nullrequired
Trace id value used by this API operation.

Any of option 1

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.typestringoptional
Provider result type.
Example: rawMcpToolResult
data.toolNamestringoptional
Executed Mercado tool name.
Example: categorySearch
data.chargedbooleanoptional
Whether the selected tool is paid.
Example: false
data.dataobjectoptional
Parsed business data, or provider text when the result is not JSON.
Example: {}
data.contentTextstringoptional
Original concatenated provider text.
Example: Category results...
data.textParsedAsJsonbooleanoptional
Whether provider text was parsed as JSON.
Example: true
data.totalintegeroptional
Inferred result count when available.
Example: 1
data.costTokenintegeroptional
Provider-reported token cost; free tools return zero.
Example: 0
data.costTimeintegeroptional
Gateway execution time in milliseconds.
Example: 308
data.titlestringoptional
Provider-specific response title.
Example: null
data.sourceTypestringoptional
Provider-specific source platform type.
Example: null
data.sourceToolstringoptional
Provider-specific source tool name.
Example: null
data.pageintegeroptional
Current page returned by the upstream provider.
Example: null
data.pageSizeintegeroptional
Page size returned by the upstream provider.
Example: null
data.pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: null
data.totalPageintegeroptional
Total page count returned by the upstream provider.
Example: null
data.dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: null

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "arguments": {
    "searchText": "Auriculares",
    "siteId": "MLM"
  },
  "toolName": "categorySearch"
}

Example structuredContent

{
  "data": {
    "type": "rawMcpToolResult",
    "toolName": "categorySearch",
    "charged": false,
    "data": {},
    "contentText": "Category results...",
    "textParsedAsJson": true,
    "total": 1,
    "costToken": 0,
    "costTime": 308
  },
  "code": 0,
  "msg": "ok",
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}