etsy_search_shop_listings

Pack: etsy · Endpoint: https://gateway.pipeworx.io/etsy/mcp

Search a specific Etsy shop’s active listings by shop ID (Etsy Open API v3, findAllActiveListingsByShop). Requires an Etsy API key. Use etsy_search_listings first if you don’t already have a shop_id.

Parameters

NameTypeRequiredDescription
shop_idnumberyesNumeric Etsy shop ID
keywordsstringnoSearch term to filter this shop’s listings
limitnumberno1-100 (default 25)
offsetnumbernoRecords to skip (default 0)
sort_onstringnocreated (default) | price | updated | score
sort_orderstringnoasc | desc

Example call

Arguments

{
  "shop_id": 12345678,
  "keywords": "candle",
  "limit": 10,
  "_apiKey": "your-keystring:your-shared-secret"
}

curl

curl -X POST https://gateway.pipeworx.io/etsy/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"etsy_search_shop_listings","arguments":{"shop_id":12345678,"keywords":"candle","limit":10,"_apiKey":"your-keystring:your-shared-secret"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('etsy_search_shop_listings', {
  "shop_id": 12345678,
  "keywords": "candle",
  "limit": 10,
  "_apiKey": "your-keystring:your-shared-secret"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "etsy": {
      "url": "https://gateway.pipeworx.io/etsy/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 5, 2026