Etsy Marketplace
Etsy Product Detail MCP Tool
Returns normalized public ecommerce research data with a fixed read-only provider path.
MCP tool name
nexscope_etsy_product_detailEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/etsy-product-detail/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf 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-product-detail-1",
"method": "tools/call",
"params": {
"name": "nexscope_etsy_product_detail",
"arguments": {
"productUrl": "https://www.etsy.com/listing/1710567856/its-okay-to-make-some-mistakes-shirt"
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/etsy-product-detail/runCanonical detail URL
https://www.nexscope.ai/mcp-map/etsy-product-detailArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
productUrl | string | required | HTTPS Etsy listing URL containing a numeric listing ID Example: https://www.etsy.com/listing/1710567856/its-okay-to-make-some-mistakes-shirt |
Response fields
Treat structuredContent as the programmatic API response payload.
No response field schema is defined for this tool.
Examples
Example arguments
{
"productUrl": "https://www.etsy.com/listing/1710567856/its-okay-to-make-some-mistakes-shirt"
}Example structuredContent
{
"product": {
"title": "Example Etsy product",
"price": 1,
"productId": "1710567856",
"currency": "EUR",
"images": []
}
}