@vkhanhqui/figma-mcp-go 0.0.6 → 0.0.8
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 +51 -5
- 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
|
@@ -7,9 +7,9 @@ Open-source Figma MCP server with full read/write access via plugin — no REST
|
|
|
7
7
|
**Highlights**
|
|
8
8
|
- No Figma API token required
|
|
9
9
|
- No rate limits — free plan friendly
|
|
10
|
-
- **Read and Write** live Figma data via plugin bridge
|
|
11
|
-
-
|
|
12
|
-
-
|
|
10
|
+
- **Read and Write** live Figma data via plugin bridge — 58 tools total
|
|
11
|
+
- Full design automation — styles, variables, components, prototypes, and content
|
|
12
|
+
- Design strategies included — read_design_strategy, design_strategy, and more prompts built in
|
|
13
13
|
|
|
14
14
|
https://github.com/user-attachments/assets/17bda971-0e83-4f18-8758-8ac2b8dcba62
|
|
15
15
|
|
|
@@ -94,6 +94,7 @@ claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest
|
|
|
94
94
|
| `create_ellipse` | Create an ellipse or circle |
|
|
95
95
|
| `create_text` | Create a text node (font loaded automatically) |
|
|
96
96
|
| `import_image` | Decode base64 image and place it as a rectangle fill |
|
|
97
|
+
| `create_component` | Convert an existing FRAME node into a reusable component |
|
|
97
98
|
|
|
98
99
|
### Write — Modify
|
|
99
100
|
|
|
@@ -102,6 +103,9 @@ claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest
|
|
|
102
103
|
| `set_text` | Update text content of an existing TEXT node |
|
|
103
104
|
| `set_fills` | Set solid fill color (hex) on a node |
|
|
104
105
|
| `set_strokes` | Set solid stroke color and weight on a node |
|
|
106
|
+
| `set_opacity` | Set opacity of one or more nodes (0 = transparent, 1 = opaque) |
|
|
107
|
+
| `set_corner_radius` | Set corner radius — uniform or per-corner |
|
|
108
|
+
| `set_auto_layout` | Set or update auto-layout (flex) properties on a frame |
|
|
105
109
|
| `move_nodes` | Move nodes to an absolute x/y position |
|
|
106
110
|
| `resize_nodes` | Resize nodes by width and/or height |
|
|
107
111
|
| `rename_node` | Rename a node |
|
|
@@ -113,7 +117,47 @@ claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest
|
|
|
113
117
|
|------|-------------|
|
|
114
118
|
| `delete_nodes` | Delete one or more nodes permanently |
|
|
115
119
|
|
|
116
|
-
###
|
|
120
|
+
### Write — Prototype
|
|
121
|
+
|
|
122
|
+
| Tool | Description |
|
|
123
|
+
|------|-------------|
|
|
124
|
+
| `set_reactions` | Set prototype reactions (triggers + actions) on a node; mode `replace` or `append` |
|
|
125
|
+
| `remove_reactions` | Remove all or specific reactions by zero-based index from a node |
|
|
126
|
+
|
|
127
|
+
### Write — Styles
|
|
128
|
+
|
|
129
|
+
| Tool | Description |
|
|
130
|
+
|------|-------------|
|
|
131
|
+
| `create_paint_style` | Create a named paint style with a solid color |
|
|
132
|
+
| `create_text_style` | Create a named text style with font, size, and spacing |
|
|
133
|
+
| `create_effect_style` | Create a named effect style (drop shadow, inner shadow, blur) |
|
|
134
|
+
| `create_grid_style` | Create a named layout grid style (columns, rows, or grid) |
|
|
135
|
+
| `update_paint_style` | Rename or recolor an existing paint style |
|
|
136
|
+
| `apply_style_to_node` | Apply an existing local style to a node, linking it to that style |
|
|
137
|
+
| `delete_style` | Delete any style (paint, text, effect, or grid) by ID |
|
|
138
|
+
|
|
139
|
+
### Write — Variables
|
|
140
|
+
|
|
141
|
+
| Tool | Description |
|
|
142
|
+
|------|-------------|
|
|
143
|
+
| `create_variable_collection` | Create a new local variable collection with an optional initial mode |
|
|
144
|
+
| `add_variable_mode` | Add a new mode to an existing collection (e.g. Light/Dark) |
|
|
145
|
+
| `create_variable` | Create a variable (COLOR/FLOAT/STRING/BOOLEAN) in a collection |
|
|
146
|
+
| `set_variable_value` | Set a variable's value for a specific mode |
|
|
147
|
+
| `bind_variable_to_node` | Bind a local variable to a node property |
|
|
148
|
+
| `delete_variable` | Delete a variable or an entire collection |
|
|
149
|
+
|
|
150
|
+
### Write — Components & Navigation
|
|
151
|
+
|
|
152
|
+
| Tool | Description |
|
|
153
|
+
|------|-------------|
|
|
154
|
+
| `navigate_to_page` | Switch the active Figma page by ID or name |
|
|
155
|
+
| `group_nodes` | Group two or more nodes into a GROUP |
|
|
156
|
+
| `ungroup_nodes` | Ungroup GROUP nodes, moving children to the parent |
|
|
157
|
+
| `swap_component` | Swap the main component of an INSTANCE node |
|
|
158
|
+
| `detach_instance` | Detach component instances, converting them to plain frames |
|
|
159
|
+
|
|
160
|
+
### Read — Document & Selection
|
|
117
161
|
|
|
118
162
|
| Tool | Description |
|
|
119
163
|
|------|-------------|
|
|
@@ -129,7 +173,7 @@ claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest
|
|
|
129
173
|
| `scan_nodes_by_types` | Nodes matching given type list |
|
|
130
174
|
| `get_viewport` | Current viewport center, zoom, and visible bounds |
|
|
131
175
|
|
|
132
|
-
### Styles & Variables
|
|
176
|
+
### Read — Styles & Variables
|
|
133
177
|
|
|
134
178
|
| Tool | Description |
|
|
135
179
|
|------|-------------|
|
|
@@ -146,6 +190,8 @@ claude mcp add -s project figma-mcp-go -- npx -y @vkhanhqui/figma-mcp-go@latest
|
|
|
146
190
|
|------|-------------|
|
|
147
191
|
| `get_screenshot` | Base64 image export of any node |
|
|
148
192
|
| `save_screenshots` | Export images to disk (server-side, no API call) |
|
|
193
|
+
| `export_frames_to_pdf` | Export multiple frames as a single multi-page PDF file saved to disk |
|
|
194
|
+
| `export_tokens` | Export design tokens (variables + paint styles) as JSON or CSS |
|
|
149
195
|
|
|
150
196
|
### MCP Prompts
|
|
151
197
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|