etsy-mcp-server

etsy-mcp-server

A full-featured MCP server for the Etsy Open API v3 that enables managing an Etsy shop, including listings, inventory, images, digital files, and orders, through Claude or any MCP-compatible client.

Category
Visit Server

README

etsy-mcp-server

Full-featured Model Context Protocol server for the Etsy Open API v3. Manage your Etsy shop — listings, inventory, images, digital files, orders — entirely through Claude or any MCP-compatible client.

Features

Group Tools
Shop get_me, get_shop, update_shop
Listings list_listings, get_listing, create_listing, update_listing, publish_listing, delete_listing
Images list_listing_images, upload_listing_image, delete_listing_image
Digital files list_listing_files, upload_listing_file, delete_listing_file
Inventory get_inventory, update_inventory
Sections list_sections, create_section, update_section, delete_section
Taxonomy get_taxonomy_nodes, get_taxonomy_properties, suggest_tags
Orders list_orders, get_order

Prerequisites

  • Node.js 18+
  • An Etsy Developer account with an app created
  • Your app must be approved for OAuth write access (Etsy reviews new apps)

Installation

git clone https://github.com/DColl/etsy-mcp-server.git
cd etsy-mcp-server
npm install
cp .env.example .env

Edit .env and fill in your credentials:

ETSY_API_KEY=your_keystring_here
ETSY_API_SECRET=your_shared_secret_here

Authentication

Step 1 — OAuth authorization (required for write operations)

npm run auth

This opens a local browser flow. After authorizing, tokens are saved to .env automatically.

Step 2 — Find your Shop ID

Build the server and ask Claude: "call get_me" — it returns your shop_id. Add it to .env:

ETSY_SHOP_ID=12345678

Build & run

npm run build
npm start

Or in dev mode (no build step):

npm run dev

Configure Claude Code

Add to your Claude Code settings (~/.claude/settings.json or project .claude/settings.json):

{
  "mcpServers": {
    "etsy": {
      "command": "node",
      "args": ["/absolute/path/to/etsy-mcp-server/dist/index.js"],
      "env": {
        "ETSY_API_KEY": "your_keystring",
        "ETSY_API_SECRET": "your_shared_secret",
        "ETSY_ACCESS_TOKEN": "your_access_token",
        "ETSY_REFRESH_TOKEN": "your_refresh_token",
        "ETSY_TOKEN_EXPIRY": "your_token_expiry",
        "ETSY_SHOP_ID": "your_shop_id"
      }
    }
  }
}

Configure Claude Desktop

Add to ~/AppData/Roaming/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "etsy": {
      "command": "node",
      "args": ["C:\\path\\to\\etsy-mcp-server\\dist\\index.js"]
    }
  }
}

Example usage with Claude

Create a draft listing for my PDF printable "STOP Before You Pay" fraud prevention checklist.
Price: $4.99, it's a digital download, quantity 999.
Use suggest_tags with keyword "printable" to find the right taxonomy, then add tags.
Upload cover.jpg as image and stop-before-you-pay.pdf as the digital file.
Then publish the listing.

Rate limits

Etsy allows 5 requests/second and 5,000 requests/day per API key.

License

MIT — © TBS-Digital 2026

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured