Etsy Marketplace

Etsy Store Query MCP Tool

Returns Etsy store profiles and marketplace performance metrics.

MCP tool name
nexscope_etsy_store_query
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/etsy-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": "etsy-store-query-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_etsy_store_query",
    "arguments": {
      "page": 1,
      "pageSize": 20,
      "searchKey": "Lewshop1"
    }
  }
}
REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/etsy-store-query/run
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.

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

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

Example structuredContent

{
  "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
}