Nexscope

Etsy Marketplace

Etsy Store Query MCP Tool

Returns Etsy store profiles and marketplace performance metrics.

MCP tool name
nexscope_etsy_store_query
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": "etsy-store-query-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_etsy_store_query",
    "arguments": {
      "pageSize": 20,
      "page": 1,
      "searchKey": "Lewshop1"
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/etsy-store-query

Arguments

NameTypeRequiredMeaning
searchKeystringoptional
Store name, keyword, or Etsy store URL.
Example: Lewshop1
categorystringoptional
Primary store category.
Example: Jewelry
countrystringoptional
Store country or region.
Example: US
statusintegeroptional
Store status: 1 active, 0 inactive.
Example: 1
isRavingintegeroptional
Raving store flag: 1 yes.
Example: 1
isStarintegeroptional
Star store flag: 1 yes.
Example: 1
beginFavoritesintegeroptional
Minimum total favorites.
Example: 0
endFavoritesintegeroptional
Maximum total favorites.
Example: 10000
beginFavoritesWeeklyintegeroptional
Minimum weekly favorites.
Example: 0
endFavoritesWeeklyintegeroptional
Maximum weekly favorites.
Example: 1000
beginReviewsintegeroptional
Minimum total reviews.
Example: 0
endReviewsintegeroptional
Maximum total reviews.
Example: 10000
beginReviewsWeeklyintegeroptional
Minimum weekly reviews.
Example: 0
endReviewsWeeklyintegeroptional
Maximum weekly reviews.
Example: 1000
beginSalesintegeroptional
Minimum total sales.
Example: 0
endSalesintegeroptional
Maximum total sales.
Example: 100000
beginSalesWeeklyintegeroptional
Minimum weekly sales.
Example: 0
endSalesWeeklyintegeroptional
Maximum weekly sales.
Example: 1000
beginStoreOpenedAtstringoptional
Opening date range start in YYYY-MM-DD format.
Example: 2020-01-01
endStoreOpenedAtstringoptional
Opening date range end in YYYY-MM-DD format.
Example: 2026-01-01
sortByintegeroptional
Sort field: 8 total sales, 9 weekly sales, 10 reviews, 11 favorites.
Example: 8
sortDescintegeroptional
Sort direction: 1 descending, 0 ascending.
Example: 1
pageintegeroptional
Page number starting from 1.
Example: 1
pageSizeintegeroptional
Items per page from 1 to 100.
Example: 20

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.totalintegeroptional
Records returned on the current page.
Example: 1
data.storeNumintegeroptional
Total matching stores.
Example: 1
data.storesarrayoptional
Etsy stores.
Example: []
data.stores[].storeIdstringoptional
Store identifier.
Example: 123456
data.stores[].storeNamestringoptional
Store name.
Example: Lewshop1
data.stores[].storeUrlstringoptional
Etsy store URL.
Example: https://www.etsy.com/shop/Lewshop1
data.stores[].countryarrayoptional
Store countries or regions.
Example: []
data.stores[].categoryarrayoptional
Primary categories.
Example: []
data.stores[].salesTotalintegeroptional
Total sales.
Example: 1
data.stores[].salesWeeklyintegeroptional
Weekly sales.
Example: 1
data.stores[].reviewsintegeroptional
Review count.
Example: 1
data.stores[].favoritesintegeroptional
Favorite count.
Example: 1
data.stores[].ratingnumberoptional
Store rating.
Example: 4.8
data.stores[].statusintegeroptional
Store status.
Example: 1
data.columnsarrayoptional
Provider rendering columns.
Example: []
data.costTokenintegeroptional
Provider-reported token cost.
Example: 3600
data.typestringoptional
Provider-specific render or payload type.
Example: null
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.costTimeintegeroptional
Execution time reported by the upstream provider.
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

{
  "pageSize": 20,
  "page": 1,
  "searchKey": "Lewshop1"
}

Example structuredContent

{
  "data": {
    "total": 1,
    "storeNum": 1,
    "stores": [
      {
        "storeId": "123456",
        "storeName": "Lewshop1",
        "storeUrl": "https://www.etsy.com/shop/Lewshop1",
        "country": [],
        "category": [],
        "salesTotal": 1,
        "salesWeekly": 1,
        "reviews": 1,
        "favorites": 1,
        "rating": 4.8,
        "status": 1
      }
    ],
    "columns": [],
    "costToken": 3600
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}