forked from GLips/Figma-Context-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
42 lines (42 loc) · 1.21 KB
/
server.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.GLips/Figma-Context-MCP",
"description": "Give your coding agent access to your Figma data. Implement designs in any framework in one-shot.",
"status": "active",
"repository": {
"url": "https://github.com/GLips/Figma-Context-MCP",
"source": "github"
},
"version": "0.5.2",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "figma-developer-mcp",
"version": "0.5.2",
"transport": {
"type": "stdio"
},
"package_arguments": [
{
"type": "positional",
"value": "--stdio"
}
],
"environment_variables": [
{
"description": "Your Figma Personal Access Token, learn more here: https://www.figma.com/developers/api#access-tokens",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "FIGMA_API_KEY"
},
{
"name": "NODE_ENV",
"description": "Start the server in stdio mode, keep as CLI",
"default": "cli"
}
]
}
]
}