@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 +9 -0
- package/.github/copilot-instructions.md +16 -0
- package/.smithery/index.cjs +1352 -0
- package/DEPLOYMENT_CHECKLIST.md +206 -0
- package/OAUTH_SETUP.md +275 -0
- package/PROMPTS_AND_RESOURCES.md +353 -0
- package/QUICK_REFERENCE.md +186 -0
- package/README.md +677 -0
- package/SMITHERY_DEPLOYMENT.md +276 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +2459 -0
- package/icon.svg +54 -0
- package/language.json +1 -0
- package/package.json +1 -0
- package/package_name +1 -0
- package/push_info.json +5 -0
- package/smithery.yaml +1 -0
- package/src/index.ts +2667 -0
- package/tsconfig.json +19 -0
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
|