Back to MCP directory
publicPublicdnsLocal runtime

etsy-mcp-server

一个与Etsy API集成的MCP服务器项目,目前仍在开发中,主要功能包括创建商品列表和列表数据分析。

article

README

🚀 etsy-mcp-server

etsy-mcp-server 是一个与 Etsy API 集成的 MCP 服务器,目前该项目仍处于开发阶段。

🚀 快速开始

🔑 设置 Etsy API 密钥

  1. 访问 Etsy 开发者平台,并点击“创建应用”。
  2. 应用程序需经过审核,这一过程可能需要数天到数周时间。若想加快审批流程,可发送邮件至 developers@etsy.com 请求 API 密钥批准。示例邮件模板可在 etsy-email-template.txt 中找到。
  3. 审批通过后,在“管理您的应用”页面中复制 API 密钥。

🖥️ 在 Claude Desktop 设置 MCP 服务器

claude_desktop_config.json 文件中添加以下内容。该文件位于 ~/Library/Application\ Support/Claude/claude_desktop_config.json

"etsy-mcp-server": {
    "command": "/Users/{user}/.local/bin/uv",
    "args": [
        "--directory",
        {PATH_TO_REPO},
        "run",
        "etsy-mcp-server.py"
    ],
    "env": {
        "ETSY_API_KEY": {YOUR_ETSY_API_KEY}
    }
}

其中:

  • {user} 是您的用户名。
  • {PATH_TO_REPO} 是仓库路径。
  • {YOUR_ETSY_API_KEY} 是您的 Etsy API 密钥。

✨ 主要特性

💻 输入工具

  • 创建商品 listings
  • Listing 数据分析

⚠️ 重要提示

此项目仍处于开发阶段,使用时请留意可能存在的问题。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client