Shopify Commerce
Shopify Store Query MCP Tool
Filter Shopify standalone stores by multiple dimensions (store name/domain, country, years since creation, product count, ad count, monthly visits, monthly orders, social media followers, etc.).
MCP tool name
nexscope_shopify_store_queryEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/shopify-store-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": "shopify-store-query-1",
"method": "tools/call",
"params": {
"name": "nexscope_shopify_store_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/shopify-store-query/runCanonical detail URL
https://www.nexscope.ai/mcp-map/shopify-store-queryArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
searchKey | string | optional | Store name or domain keyword Example: {} |
country | string | optional | Country code (e.g., US, CN) Example: {} |
year | integer | optional | Store creation year: 1=Last 1 year, 2=1~2 years, 3=2~3 years, 4=3+ years Example: 1 |
productNumMin | integer | optional | Product count range start Example: 1 |
productNumMax | integer | optional | Product count range end Example: 1 |
advertiseCountMin | integer | optional | Ad count range start Example: 1 |
advertiseCountMax | integer | optional | Ad count range end Example: 1 |
monthlyVisitMin | integer | optional | Monthly visits range start Example: 1 |
monthlyVisitMax | integer | optional | Monthly visits range end Example: 1 |
monthOrderMin | integer | optional | Monthly orders range start Example: 1 |
monthOrderMax | integer | optional | Monthly orders range end Example: 1 |
sortBy | integer | optional | Sort field: 0=Product count, 1=Category count, 2=Monthly visits, 3=FB followers, 4=Ins followers, 5=Ad count, 6=Relevance, 7=Monthly orders (default) Example: 1 |
orderBy | string | optional | Sort direction: desc (default) / asc Example: {} |
page | integer | optional | Page number (starting from 1) Example: 1 |
pageSize | integer | optional | Results 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 results returned on this page Example: 1 |
storeNum | integer | optional | Total number of matching stores (upstream store_num) Example: 1 |
stores | array | optional | Shopify store list Example: [] |
columns | array | optional | Columns for rendering Example: [] |
title | string | optional | Title (Shopify Store Query) Example: {} |
sourceType | string | optional | Source type: shopify 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[].shopId | string | optional | Shopify shop ID Example: example-id |
stores[].storeName | string | optional | Store name Example: {} |
stores[].storeDomain | string | optional | Store domain Example: {} |
stores[].storeLink | string | optional | Store link Example: {} |
stores[].country | string | optional | Country Example: {} |
stores[].createdTime | string | optional | Creation time Example: {} |
stores[].productNum | string | optional | Product count Example: {} |
stores[].categoryNum | string | optional | Category count Example: {} |
stores[].categories | string | optional | Category list (elements contain id, name) Example: {} |
stores[].monthlyVisit | string | optional | Monthly visits (formatted) Example: {} |
stores[].monthOrderNum | string | optional | Monthly orders (formatted) Example: {} |
stores[].fbFollowers | string | optional | Facebook followers Example: {} |
stores[].insFollowers | string | optional | Instagram followers Example: {} |
stores[].advertiseCount | string | optional | Ad count Example: {} |
stores[].adLink | string | optional | Ad library link Example: {} |
stores[].email | string | optional | Contact email Example: {} |
stores[].facebookUrl | string | optional | Facebook page Example: https://example.com/image.jpg |
stores[].instagramUrl | string | optional | Instagram page Example: https://example.com/image.jpg |
stores[].socialLinks | string | optional | Social media links (Map) Example: {} |
stores[].globalRank | string | optional | Global rank Example: {} |
stores[].logo | string | optional | Store logo URL Example: {} |
stores[].availableStatus | string | optional | Whether active: 1=Active 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",
"shopId": "example-id",
"facebookUrl": "https://example.com/image.jpg",
"instagramUrl": "https://example.com/image.jpg"
}
],
"columns": []
}