palette-mcp 1.3.3 → 1.3.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 +2 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palette-mcp",
3
- "version": "1.3.3",
3
+ "version": "1.3.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,30 +1,5 @@
1
1
  # Smithery.ai MCP Server Configuration
2
2
  # https://smithery.ai/docs/build/config
3
3
 
4
- runtime: "container"
5
-
6
- # Container runtime은 HTTP transport 사용 필수
7
- startCommand:
8
- type: "http"
9
- url: "http://localhost:3000"
10
- configSchema:
11
- type: "object"
12
- required:
13
- - "FIGMA_ACCESS_TOKEN"
14
- - "GITHUB_TOKEN"
15
- properties:
16
- FIGMA_ACCESS_TOKEN:
17
- type: "string"
18
- title: "Figma Access Token"
19
- description: "Figma Personal Access Token (필수). Figma 디자인에 접근하기 위해 필요합니다."
20
- format: "password"
21
- GITHUB_TOKEN:
22
- type: "string"
23
- title: "GitHub Token"
24
- description: "GitHub Personal Access Token (필수). dealicious-inc 조직 멤버십 확인 및 디자인 시스템 패키지 접근에 필요합니다."
25
- format: "password"
26
- FIGMA_MCP_SERVER_URL:
27
- type: "string"
28
- title: "Figma MCP Server URL"
29
- description: "Figma Dev Mode MCP server URL (선택)."
30
- default: "http://127.0.0.1:3845/mcp"
4
+ # TypeScript runtime: @smithery/sdk가 자동으로 HTTP transport 처리
5
+ runtime: "typescript"