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_query
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/shopify-store-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": "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/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/shopify-store-query

Arguments

NameTypeRequiredMeaning
searchKeystringoptional
Store name or domain keyword
Example: {}
countrystringoptional
Country code (e.g., US, CN)
Example: {}
yearintegeroptional
Store creation year: 1=Last 1 year, 2=1~2 years, 3=2~3 years, 4=3+ years
Example: 1
productNumMinintegeroptional
Product count range start
Example: 1
productNumMaxintegeroptional
Product count range end
Example: 1
advertiseCountMinintegeroptional
Ad count range start
Example: 1
advertiseCountMaxintegeroptional
Ad count range end
Example: 1
monthlyVisitMinintegeroptional
Monthly visits range start
Example: 1
monthlyVisitMaxintegeroptional
Monthly visits range end
Example: 1
monthOrderMinintegeroptional
Monthly orders range start
Example: 1
monthOrderMaxintegeroptional
Monthly orders range end
Example: 1
sortByintegeroptional
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
orderBystringoptional
Sort direction: desc (default) / asc
Example: {}
pageintegeroptional
Page number (starting from 1)
Example: 1
pageSizeintegeroptional
Results per page, max 100
Example: 1

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
totalintegeroptional
Number of results returned on this page
Example: 1
storeNumintegeroptional
Total number of matching stores (upstream store_num)
Example: 1
storesarrayoptional
Shopify store list
Example: []
columnsarrayoptional
Columns for rendering
Example: []
titlestringoptional
Title (Shopify Store Query)
Example: {}
sourceTypestringoptional
Source type: shopify
Example: {}
sourceToolstringoptional
Tool type: ehunt
Example: {}
typestringoptional
Render style: tableListWorkbenches
Example: {}
stores[].storeIdstringoptional
Store ID
Example: example-id
stores[].shopIdstringoptional
Shopify shop ID
Example: example-id
stores[].storeNamestringoptional
Store name
Example: {}
stores[].storeDomainstringoptional
Store domain
Example: {}
stores[].storeLinkstringoptional
Store link
Example: {}
stores[].countrystringoptional
Country
Example: {}
stores[].createdTimestringoptional
Creation time
Example: {}
stores[].productNumstringoptional
Product count
Example: {}
stores[].categoryNumstringoptional
Category count
Example: {}
stores[].categoriesstringoptional
Category list (elements contain id, name)
Example: {}
stores[].monthlyVisitstringoptional
Monthly visits (formatted)
Example: {}
stores[].monthOrderNumstringoptional
Monthly orders (formatted)
Example: {}
stores[].fbFollowersstringoptional
Facebook followers
Example: {}
stores[].insFollowersstringoptional
Instagram followers
Example: {}
stores[].advertiseCountstringoptional
Ad count
Example: {}
stores[].adLinkstringoptional
Ad library link
Example: {}
stores[].emailstringoptional
Contact email
Example: {}
stores[].facebookUrlstringoptional
Facebook page
Example: https://example.com/image.jpg
stores[].instagramUrlstringoptional
Instagram page
Example: https://example.com/image.jpg
stores[].socialLinksstringoptional
Social media links (Map)
Example: {}
stores[].globalRankstringoptional
Global rank
Example: {}
stores[].logostringoptional
Store logo URL
Example: {}
stores[].availableStatusstringoptional
Whether active: 1=Active
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,
  "storeNum": 1,
  "stores": [
    {
      "storeId": "example-id",
      "shopId": "example-id",
      "facebookUrl": "https://example.com/image.jpg",
      "instagramUrl": "https://example.com/image.jpg"
    }
  ],
  "columns": []
}