palette-mcp 1.3.6 → 1.3.7
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 +1 -1
- package/smithery.yaml +28 -2
package/package.json
CHANGED
package/smithery.yaml
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Smithery.ai MCP Server Configuration
|
|
2
2
|
# https://smithery.ai/docs/build/config
|
|
3
3
|
|
|
4
|
-
#
|
|
5
|
-
runtime: "
|
|
4
|
+
# Container runtime: libsecret 설치를 위한 custom Dockerfile 사용
|
|
5
|
+
runtime: "container"
|
|
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
|