etsy_get_listing
Pack: etsy · Endpoint: https://gateway.pipeworx.io/etsy/mcp
Get one Etsy listing by its numeric listing ID (Etsy Open API v3, getListing). Requires an Etsy API key.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
listing_id | number | yes | Numeric Etsy listing ID |
Example call
Arguments
{
"listing_id": 123456789,
"_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_get_listing","arguments":{"listing_id":123456789,"_apiKey":"your-keystring:your-shared-secret"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('etsy_get_listing', {
"listing_id": 123456789,
"_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.