@vkhanhqui/figma-mcp-go 0.0.2-alpha → 0.0.3-alpha
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/README.md +60 -14
- package/bin/darwin-amd64/figma-mcp-go +0 -0
- package/bin/darwin-arm64/figma-mcp-go +0 -0
- package/bin/linux-amd64/figma-mcp-go +0 -0
- package/bin/linux-arm64/figma-mcp-go +0 -0
- package/bin/windows-amd64/figma-mcp-go.exe +0 -0
- package/bin/windows-arm64/figma-mcp-go.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
# figma-mcp-go
|
|
2
2
|
|
|
3
|
-
Figma MCP
|
|
3
|
+
Figma MCP — Free, No Rate Limits
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Open-source Figma MCP server with full read/write access via plugin — no REST API, no rate limits. Turn text into designs and designs into real code. Works with Cursor, Claude, GitHub Copilot, and any MCP-compatible AI tool.
|
|
6
6
|
|
|
7
7
|
**Highlights**
|
|
8
8
|
- No Figma API token required
|
|
9
9
|
- No rate limits — free plan friendly
|
|
10
|
-
-
|
|
11
|
-
- Written in Go, distributed via npm
|
|
10
|
+
- **Read and Write** live Figma data via plugin bridge
|
|
12
11
|
- Supports multiple AI tools simultaneously
|
|
12
|
+
- Written in Go, distributed via npm
|
|
13
|
+
|
|
14
|
+
https://github.com/user-attachments/assets/17bda971-0e83-4f18-8758-8ac2b8dcba62
|
|
13
15
|
|
|
14
16
|
---
|
|
15
17
|
|
|
@@ -40,29 +42,34 @@ Install via `npx` — no build step required. Watch the setup video or follow th
|
|
|
40
42
|
|
|
41
43
|
### 1. Configure your AI tool
|
|
42
44
|
|
|
43
|
-
|
|
45
|
+
**Claude Code CLI**
|
|
46
|
+
```bash
|
|
47
|
+
claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
**.mcp.json** (Claude and other MCP-compatible tools)
|
|
44
51
|
```json
|
|
45
52
|
{
|
|
46
|
-
"
|
|
53
|
+
"mcpServers": {
|
|
47
54
|
"figma-mcp-go": {
|
|
48
|
-
"type": "stdio",
|
|
49
55
|
"command": "npx",
|
|
50
|
-
"args": [
|
|
51
|
-
"-y",
|
|
52
|
-
"@vkhanhqui/figma-mcp-go"
|
|
53
|
-
]
|
|
56
|
+
"args": ["-y", "@vkhanhqui/figma-mcp-go"]
|
|
54
57
|
}
|
|
55
58
|
}
|
|
56
59
|
}
|
|
57
60
|
```
|
|
58
61
|
|
|
59
|
-
**.mcp.json** (
|
|
62
|
+
**.vscode/mcp.json** (Cursor / VS Code / GitHub Copilot)
|
|
60
63
|
```json
|
|
61
64
|
{
|
|
62
|
-
"
|
|
65
|
+
"servers": {
|
|
63
66
|
"figma-mcp-go": {
|
|
67
|
+
"type": "stdio",
|
|
64
68
|
"command": "npx",
|
|
65
|
-
"args": [
|
|
69
|
+
"args": [
|
|
70
|
+
"-y",
|
|
71
|
+
"@vkhanhqui/figma-mcp-go"
|
|
72
|
+
]
|
|
66
73
|
}
|
|
67
74
|
}
|
|
68
75
|
}
|
|
@@ -78,6 +85,34 @@ Install via `npx` — no build step required. Watch the setup video or follow th
|
|
|
78
85
|
|
|
79
86
|
## Available Tools
|
|
80
87
|
|
|
88
|
+
### Write — Create
|
|
89
|
+
|
|
90
|
+
| Tool | Description |
|
|
91
|
+
|------|-------------|
|
|
92
|
+
| `create_frame` | Create a frame with optional auto-layout, fill, and parent |
|
|
93
|
+
| `create_rectangle` | Create a rectangle with optional fill and corner radius |
|
|
94
|
+
| `create_ellipse` | Create an ellipse or circle |
|
|
95
|
+
| `create_text` | Create a text node (font loaded automatically) |
|
|
96
|
+
| `import_image` | Decode base64 image and place it as a rectangle fill |
|
|
97
|
+
|
|
98
|
+
### Write — Modify
|
|
99
|
+
|
|
100
|
+
| Tool | Description |
|
|
101
|
+
|------|-------------|
|
|
102
|
+
| `set_text` | Update text content of an existing TEXT node |
|
|
103
|
+
| `set_fills` | Set solid fill color (hex) on a node |
|
|
104
|
+
| `set_strokes` | Set solid stroke color and weight on a node |
|
|
105
|
+
| `move_nodes` | Move nodes to an absolute x/y position |
|
|
106
|
+
| `resize_nodes` | Resize nodes by width and/or height |
|
|
107
|
+
| `rename_node` | Rename a node |
|
|
108
|
+
| `clone_node` | Clone a node, optionally repositioning or reparenting |
|
|
109
|
+
|
|
110
|
+
### Write — Delete
|
|
111
|
+
|
|
112
|
+
| Tool | Description |
|
|
113
|
+
|------|-------------|
|
|
114
|
+
| `delete_nodes` | Delete one or more nodes permanently |
|
|
115
|
+
|
|
81
116
|
### Document & Selection
|
|
82
117
|
|
|
83
118
|
| Tool | Description |
|
|
@@ -112,6 +147,17 @@ Install via `npx` — no build step required. Watch the setup video or follow th
|
|
|
112
147
|
| `get_screenshot` | Base64 image export of any node |
|
|
113
148
|
| `save_screenshots` | Export images to disk (server-side, no API call) |
|
|
114
149
|
|
|
150
|
+
### MCP Prompts
|
|
151
|
+
|
|
152
|
+
| Prompt | Description |
|
|
153
|
+
|--------|-------------|
|
|
154
|
+
| `read_design_strategy` | Best practices for reading Figma designs |
|
|
155
|
+
| `design_strategy` | Best practices for creating and modifying designs |
|
|
156
|
+
| `text_replacement_strategy` | Chunked approach for replacing text across a design |
|
|
157
|
+
| `annotation_conversion_strategy` | Convert manual annotations to native Figma annotations |
|
|
158
|
+
| `swap_overrides_instances` | Transfer overrides between component instances |
|
|
159
|
+
| `reaction_to_connector_strategy` | Map prototype reactions into interaction flow diagrams |
|
|
160
|
+
|
|
115
161
|
---
|
|
116
162
|
|
|
117
163
|
## Related Projects
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED