palette-mcp 1.2.5 → 1.3.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/dist/smithery.d.ts +1 -1
- package/package.json +1 -1
- package/smithery.yaml +5 -12
package/dist/smithery.d.ts
CHANGED
|
@@ -17,8 +17,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
17
17
|
FIGMA_MCP_SERVER_URL: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
FIGMA_ACCESS_TOKEN: string;
|
|
20
|
-
FIGMA_MCP_SERVER_URL: string;
|
|
21
20
|
GITHUB_TOKEN: string;
|
|
21
|
+
FIGMA_MCP_SERVER_URL: string;
|
|
22
22
|
}, {
|
|
23
23
|
FIGMA_ACCESS_TOKEN: string;
|
|
24
24
|
GITHUB_TOKEN: string;
|
package/package.json
CHANGED
package/smithery.yaml
CHANGED
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
runtime: "container"
|
|
5
5
|
|
|
6
|
-
# Container runtime
|
|
6
|
+
# Container runtime은 HTTP transport 사용 필수
|
|
7
7
|
startCommand:
|
|
8
|
-
type: "
|
|
8
|
+
type: "http"
|
|
9
|
+
url: "http://localhost:3000"
|
|
9
10
|
configSchema:
|
|
10
11
|
type: "object"
|
|
11
12
|
required:
|
|
@@ -16,22 +17,14 @@ startCommand:
|
|
|
16
17
|
type: "string"
|
|
17
18
|
title: "Figma Access Token"
|
|
18
19
|
description: "Figma Personal Access Token (필수). Figma 디자인에 접근하기 위해 필요합니다."
|
|
20
|
+
format: "password"
|
|
19
21
|
GITHUB_TOKEN:
|
|
20
22
|
type: "string"
|
|
21
23
|
title: "GitHub Token"
|
|
22
24
|
description: "GitHub Personal Access Token (필수). dealicious-inc 조직 멤버십 확인 및 디자인 시스템 패키지 접근에 필요합니다."
|
|
25
|
+
format: "password"
|
|
23
26
|
FIGMA_MCP_SERVER_URL:
|
|
24
27
|
type: "string"
|
|
25
28
|
title: "Figma MCP Server URL"
|
|
26
29
|
description: "Figma Dev Mode MCP server URL (선택)."
|
|
27
30
|
default: "http://127.0.0.1:3845/mcp"
|
|
28
|
-
commandFunction: |-
|
|
29
|
-
(config) => ({
|
|
30
|
-
command: "node",
|
|
31
|
-
args: [".smithery/index.cjs"],
|
|
32
|
-
env: {
|
|
33
|
-
FIGMA_ACCESS_TOKEN: config.FIGMA_ACCESS_TOKEN,
|
|
34
|
-
GITHUB_TOKEN: config.GITHUB_TOKEN,
|
|
35
|
-
FIGMA_MCP_SERVER_URL: config.FIGMA_MCP_SERVER_URL || "http://127.0.0.1:3845/mcp"
|
|
36
|
-
}
|
|
37
|
-
})
|