Skip to content

Commit 2d779a2

Browse files
committed
Add server.json for publishing to the official MCP Registry.
1 parent 8369e48 commit 2d779a2

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "figma-developer-mcp",
33
"version": "0.5.2",
4-
"description": "Model Context Protocol server for Figma integration",
4+
"description": "Give your coding agent access to your Figma data. Implement designs in any language or framework in one-shot.",
55
"type": "module",
66
"main": "dist/index.js",
77
"bin": {

server.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3+
"name": "io.github.GLips/Figma-Context-MCP",
4+
"description": "Give your coding agent access to your Figma data. Implement designs in any language or framework in one-shot.",
5+
"status": "active",
6+
"repository": {
7+
"url": "https://github.com/GLips/Figma-Context-MCP",
8+
"source": "github"
9+
},
10+
"version": "1.0.0",
11+
"packages": [
12+
{
13+
"registry_type": "npm",
14+
"registry_base_url": "https://registry.npmjs.org",
15+
"identifier": "figma-developer-mcp",
16+
"version": "1.0.0",
17+
"transport": {
18+
"type": "stdio"
19+
},
20+
"package_arguments": [
21+
{
22+
"type": "positional",
23+
"value": "--stdio"
24+
}
25+
],
26+
"environment_variables": [
27+
{
28+
"description": "Your Figma Personal Access Token, learn more here: https://www.figma.com/developers/api#access-tokens",
29+
"is_required": true,
30+
"format": "string",
31+
"is_secret": true,
32+
"name": "FIGMA_API_KEY"
33+
},
34+
{
35+
"name": "NODE_ENV",
36+
"description": "Start the server in stdio mode, keep as CLI",
37+
"default": "cli"
38+
}
39+
]
40+
}
41+
]
42+
}

0 commit comments

Comments
 (0)