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
| Name | Type | Required | Description |
|---|---|---|---|
shop_id | number | yes | Numeric Etsy shop ID |
keywords | string | no | Search term to filter this shop’s listings |
limit | number | no | 1-100 (default 25) |
offset | number | no | Records to skip (default 0) |
sort_on | string | no | created (default) | price | updated | score |
sort_order | string | no | asc | 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.