-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathglips.figma-context-npx.json
More file actions
66 lines (59 loc) · 2.26 KB
/
Copy pathglips.figma-context-npx.json
File metadata and controls
66 lines (59 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "../schemas/server-definition.schema.json",
"id": "glips.figma-context-npx",
"name": "Figma (npx)",
"alias": "figma",
"description": "Read and inspect Figma designs, components, and styles. Extract layout details, design tokens, and asset metadata from any Figma file. Translates auto-layout to CSS flexbox. Supports image downloads.",
"icon": "https://avatars.githubusercontent.com/u/5155369?v=4",
"schema_version": "2.1",
"categories": ["developer-tools", "design"],
"tags": ["figma", "design", "ui", "components", "design-tokens", "frontend", "framelink"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "figma-developer-mcp", "--stdio"],
"env": {
"FIGMA_API_KEY": "${input:FIGMA_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "FIGMA_API_KEY",
"label": "Figma Personal Access Token",
"description": "Personal access token for the Figma API. Generated from your Figma account settings under Settings > Account > Personal access tokens.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "figd_xxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://www.figma.com/developers/api#access-tokens",
"instructions": "1. Go to figma.com and log in\n2. Open Settings > Account\n3. Scroll to Personal access tokens\n4. Click 'Generate new token'\n5. Give it a description and copy the token",
"button_label": "Get Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Generate a personal access token at figma.com under Settings > Account > Personal access tokens"
},
"contributor": {
"name": "GLips",
"github": "GLips",
"url": "https://github.com/GLips/Figma-Context-MCP"
},
"links": {
"repository": "https://github.com/GLips/Figma-Context-MCP",
"homepage": "https://figma.com",
"documentation": "https://help.figma.com/hc/en-us/articles/32132100833559-Guide-to-the-Figma-MCP-server"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
},
"changelog_url": "https://github.com/GLips/Figma-Context-MCP/releases"
}