palette-mcp 1.2.2 → 1.2.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/smithery.yaml +15 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palette-mcp",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "MCP server for converting Figma designs to React/Vue components using design system",
5
5
  "main": "dist/index.js",
6
6
  "module": "src/smithery.ts",
package/smithery.yaml CHANGED
@@ -1,5 +1,18 @@
1
1
  # Smithery.ai MCP Server Configuration
2
2
  # https://smithery.ai/docs/build/config
3
3
 
4
- # TypeScript runtime: configSchema is defined in smithery.ts using zod
5
- runtime: "typescript"
4
+ # Container runtime: 커스텀 Dockerfile 사용
5
+ runtime: "container"
6
+
7
+ # 환경변수 설정
8
+ env:
9
+ FIGMA_ACCESS_TOKEN:
10
+ description: "Figma Personal Access Token (필수). Figma 디자인에 접근하기 위해 필요합니다."
11
+ required: true
12
+ GITHUB_TOKEN:
13
+ description: "GitHub Personal Access Token (필수). dealicious-inc 조직 멤버십 확인 및 디자인 시스템 패키지 접근에 필요합니다."
14
+ required: true
15
+ FIGMA_MCP_SERVER_URL:
16
+ description: "Figma Dev Mode MCP server URL (선택). 로컬 개발 시에만 필요합니다."
17
+ required: false
18
+ default: "http://127.0.0.1:3845/mcp"