@iflow-mcp/dynamicendpoints-etsy-mcp 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.env.example ADDED
@@ -0,0 +1,9 @@
1
+ # Etsy API Configuration
2
+ # Get your API key from: https://www.etsy.com/developers
3
+
4
+ ETSY_API_KEY=your_etsy_api_key_here
5
+ ETSY_SHOP_ID=your_shop_id_optional
6
+
7
+ # OAuth Access Token (required for shop management features)
8
+ # Generate this through Etsy OAuth flow
9
+ ETSY_ACCESS_TOKEN=your_oauth_access_token_here
@@ -0,0 +1,16 @@
1
+ # Etsy MCP Server
2
+
3
+ This is a Model Context Protocol (MCP) server for the Etsy API.
4
+
5
+ ## Project Details
6
+ - **Type**: MCP Server
7
+ - **Language**: TypeScript
8
+ - **Framework**: @modelcontextprotocol/sdk
9
+ - **API**: Etsy Open API v3
10
+
11
+ ## Development Guidelines
12
+ - Follow MCP SDK best practices
13
+ - Use TypeScript for type safety
14
+ - Implement proper error handling
15
+ - Use Context7 for latest API documentation
16
+ - Follow Etsy API rate limiting guidelines