palette-mcp 1.3.9 → 1.4.1
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/package.json +5 -1
- package/smithery.yaml +2 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "palette-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
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",
|
|
@@ -80,6 +80,10 @@
|
|
|
80
80
|
"typescript": "^5.0.0",
|
|
81
81
|
"zod": "^3.22.0"
|
|
82
82
|
},
|
|
83
|
+
"resolutions": {
|
|
84
|
+
"keytar": "npm:noop-package@1.0.0",
|
|
85
|
+
"**/keytar": "npm:noop-package@1.0.0"
|
|
86
|
+
},
|
|
83
87
|
"peerDependencies": {
|
|
84
88
|
"@dealicious/design-system": "*",
|
|
85
89
|
"@dealicious/design-system-react": "*"
|
package/smithery.yaml
CHANGED
|
@@ -1,31 +1,5 @@
|
|
|
1
1
|
# Smithery.ai MCP Server Configuration
|
|
2
2
|
# https://smithery.ai/docs/build/config
|
|
3
3
|
|
|
4
|
-
#
|
|
5
|
-
runtime: "
|
|
6
|
-
|
|
7
|
-
# HTTP transport 설정
|
|
8
|
-
startCommand:
|
|
9
|
-
type: "http"
|
|
10
|
-
url: "http://localhost:3000"
|
|
11
|
-
|
|
12
|
-
# 환경 변수 스키마 (JSON Schema 형식)
|
|
13
|
-
configSchema:
|
|
14
|
-
type: "object"
|
|
15
|
-
properties:
|
|
16
|
-
FIGMA_ACCESS_TOKEN:
|
|
17
|
-
type: "string"
|
|
18
|
-
title: "Figma Personal Access Token"
|
|
19
|
-
description: "Figma Dev Mode에서 발급받은 Personal Access Token (필수)"
|
|
20
|
-
GITHUB_TOKEN:
|
|
21
|
-
type: "string"
|
|
22
|
-
title: "GitHub Personal Access Token"
|
|
23
|
-
description: "dealicious-inc 조직 멤버 인증용 GitHub Token (필수)"
|
|
24
|
-
FIGMA_MCP_SERVER_URL:
|
|
25
|
-
type: "string"
|
|
26
|
-
title: "Figma MCP Server URL"
|
|
27
|
-
description: "Figma Dev Mode MCP server URL (선택, 기본값: http://127.0.0.1:3845/mcp)"
|
|
28
|
-
default: "http://127.0.0.1:3845/mcp"
|
|
29
|
-
required:
|
|
30
|
-
- FIGMA_ACCESS_TOKEN
|
|
31
|
-
- GITHUB_TOKEN
|
|
4
|
+
# TypeScript runtime: @smithery/sdk가 자동으로 처리
|
|
5
|
+
runtime: "typescript"
|