Figma MCP Go
Provides tools for interacting with Figma via its Plugin API, enabling read/write access to documents, styles, variables, components, prototypes, and content.
figma-mcp-go
Figma MCP — Local Plugin Integration
Open-source Figma MCP server with full read/write access via plugin. Turn text into designs and designs into real code. Works with Cursor, Claude, GitHub Copilot, and any MCP-compatible AI tool.
Highlights
Operates locally via the Figma Plugin API (no REST API token required)
Real-time execution directly on your local machine
Read and Write live Figma data via plugin bridge — 63 tools total
Full design automation — styles, variables, components, prototypes, content, and transactional batch pipelines
Design strategies included — read_design_strategy, design_strategy, and more prompts built in
Styles, Variables, Components, Prototypes, and Content
https://github.com/user-attachments/assets/eae41471-fc72-4574-8261-4f42c38b8c99
Text to Design, Design to Code
https://github.com/user-attachments/assets/17bda971-0e83-4f18-8758-8ac2b8dcba62
Why this exists
Most Figma MCP servers rely on the cloud-based Figma REST API.
While the REST API is excellent for server-to-server integrations, experimenting with AI tools often involves making hundreds of rapid tool calls per session. A cloud-based approach can introduce network latency and overhead.
This project takes a different approach by running as a local Figma Plugin. By bridging directly to the Figma Plugin API on your desktop, it provides instant, real-time read/write access to your active documents without relying on external cloud APIs or requiring an API token.
Related MCP server: figma-mcp-go
Installation & Setup
Install via npx — no build step required. Watch the setup video or follow the steps below.

1. Configure your AI tool
Claude Code CLI
claude mcp add -s project figma-mcp-go -- npx -y @tunglt1810/figma-mcp-go@latestCodex CLI
codex mcp add figma-mcp-go -- npx -y @tunglt1810/figma-mcp-go@latest.mcp.json (Claude and other MCP-compatible tools)
{
"mcpServers": {
"figma-mcp-go": {
"command": "npx",
"args": ["-y", "@tunglt1810/figma-mcp-go"]
}
}
}.vscode/mcp.json (Cursor / VS Code / GitHub Copilot)
{
"servers": {
"figma-mcp-go": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@tunglt1810/figma-mcp-go"
]
}
}
}2. Install the Figma plugin
In Figma Desktop: Plugins → Development → Import plugin from manifest
Select
manifest.jsonfrom the plugin.zipRun the plugin inside any Figma file
3. Running more than one AI tool at once (optional)
Every MCP client starts its own copy of the server, but only one process can hold the plugin connection on a given port. There are two ways to share, and they do different things.
Same Figma file, no configuration. Leave the default config everywhere. The first process to bind port 1994 owns the WebSocket to the plugin; the others detect the port is taken and proxy their tool calls to it over HTTP. Every client drives the one file the plugin is open in. If the process holding the port exits, another takes over within a few seconds.
Different Figma files, one port each. Give each client its own port and point a separate plugin instance at it:
{
"mcpServers": {
"figma-mcp-go": {
"command": "npx",
"args": ["-y", "@tunglt1810/figma-mcp-go", "--port", "1995"]
}
}
}Then open the plugin in the second Figma file and set the port to match under the settings gear. Each client now talks to its own file, with no proxying.
Note that the plugin stores host and port in figma.clientStorage, which is
shared across files — changing the port makes it the default the next time you
open the plugin anywhere, so expect to set it on whichever instance should use
1994.
--ip moves the listener off 127.0.0.1 (use 0.0.0.0 to accept connections
from another machine).
Upgrading
Re-download the plugin when you update the server. The server updates itself
through npx, but the Figma plugin is installed by hand, so the two can drift
apart. A plugin older than the server will reject commands it does not know with
Unknown request type.
Breaking changes in 0.1.0
Eight single-purpose tools were replaced by one. Each took nodeIds plus a
single property, and they are now combinations of set_node_properties:
Removed | Replacement |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Properties can be combined, so what used to take several calls and several undo entries now takes one of each.
Eighteen more tools were merged into four, each selecting between the old tools with one argument. An argument belonging to a different variant is rejected with a message naming it, rather than being ignored:
Removed | Replacement |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Two things changed behaviour rather than just name. create_node({type:"ELLIPSE"})
honours startAngle, endAngle and innerRadiusRatio, which create_ellipse
declared but ignored — arcs and rings came out as plain ellipses. And name now
works on stars, polygons and lines, which read it but never declared it.
create_effect_style's type argument is effectType under create_style,
because type names the kind of style. Gradients can only target a fill;
set_paint says so rather than accepting target: "stroke" and doing nothing.
Available Tools
Write — Batch & Transactions
Tool | Description |
| Execute a transactional batch pipeline of mutation steps in Figma with stateful variable binding and rollback |
Write — Create
Tool | Description |
| Create a FRAME, RECTANGLE, ELLIPSE, STAR, POLYGON, LINE, or SECTION |
| Create a text node (font loaded automatically) |
| Decode base64 image and place it as a rectangle fill |
| Convert an existing FRAME node into a reusable component |
| Create an instance of a component (local or library) |
| Create a Connector line between nodes (FigJam only) |
Write — Modify
Tool | Description |
| Update text content of an existing TEXT node |
| Paint a node's fill or stroke — solid, linear gradient, or radial gradient |
| Set corner radius — uniform or per-corner |
| Set or update auto-layout (flex) properties on a frame |
| Set any combination of visibility, lock, opacity, rotation, blend mode, constraints, and z-order on one or more nodes |
| Update Component Properties (variants, booleans, text) on a component instance |
| Set Dev Mode Annotations on a node (requires paid Dev Mode seat) |
| Move nodes to an absolute x/y position |
| Resize nodes by width and/or height |
| Rename a node |
| Clone a node, optionally repositioning or reparenting |
| Move nodes to a different parent frame, group, or section |
| Bulk rename nodes via find/replace, regex, or prefix/suffix |
| Find and replace text across all TEXT nodes in a subtree or page; supports regex |
Write — Delete
Tool | Description |
| Delete one or more nodes permanently |
| Clear all Dev Mode Annotations from one or more nodes |
Write — Prototype
Tool | Description |
| Set prototype reactions (triggers + actions) on a node; mode |
| Remove all or specific reactions by zero-based index from a node |
Write — Styles
Tool | Description |
| Apply drop shadow / blur effects directly on a node (no style required) |
| Create a named PAINT, TEXT, EFFECT, or GRID style |
| Rename or recolor an existing paint style |
| Apply an existing local style to a node, linking it to that style |
| Delete any style (paint, text, effect, or grid) by ID |
Write — Variables
Tool | Description |
| Create a new local variable collection with an optional initial mode |
| Add a new mode to an existing collection (e.g. Light/Dark) |
| Create a variable (COLOR/FLOAT/STRING/BOOLEAN) in a collection |
| Set a variable's value for a specific mode |
| Bind a variable to a node property — supports |
| Delete a variable or an entire collection |
Write — Pages
Tool | Description |
| Add, delete, rename, or navigate to a page ( |
Write — Components & Navigation
Tool | Description |
| Group two or more nodes into a GROUP |
| Ungroup GROUP nodes, moving children to the parent |
| Swap the main component of an INSTANCE node |
| Detach component instances, converting them to plain frames |
Read — Document & Selection
Tool | Description |
| Full current page tree |
| File name, pages, current page |
| All pages (IDs + names) — lightweight, no tree loading |
| Currently selected nodes |
| Single node by ID |
| Multiple nodes by ID |
| Depth-limited tree with |
| Find nodes by name substring and/or type within a subtree |
| All text nodes in a subtree |
| Nodes matching given type list |
| Current viewport center, zoom, and visible bounds |
Read — Styles & Variables
Tool | Description |
| Paint, text, effect, and grid styles |
| Variable collections and values |
| All components + component sets with variant properties |
| Get component properties and current values of an instance |
| Dev-mode annotations |
| All fonts used on the current page, sorted by frequency |
| Prototype/interaction reactions on a node |
Export
Tool | Description |
| Base64 image export of any node |
| Export images to disk (server-side, no API call) |
| Export multiple frames as a single multi-page PDF file saved to disk |
| Export design tokens (variables + paint styles) as JSON or CSS |
MCP Prompts
Prompt | Description |
| Best practices for reading Figma designs |
| Best practices for creating and modifying designs |
| Chunked approach for replacing text across a design |
| Convert manual annotations to native Figma annotations |
| Transfer overrides between component instances |
| Map prototype reactions into interaction flow diagrams |
Contributing
Issues and PRs are welcome.
Star History
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceFigma MCP Bridge is a combined Figma plugin and MCP server that bypasses Figma's free API rate limits by streaming live document data directly to AI tools via a local WebSocket connection instead of the standard cloud API.475MIT
- AlicenseAqualityBmaintenanceFigma MCP server with full read/write access via plugin bridge — no API token, no rate limits. 58 tools for design automation: styles, variables, components, prototypes, and content.731,267MIT
- AlicenseAqualityCmaintenanceWrite-side MCP server for Figma — build, edit, and search Figma designs from Claude Code, Cursor, Cline, or any MCP client. Complements Figma's official read-only MCP with 41 tools for tree creation, variables, components, and visual verification.411MIT
- AlicenseNot gradedqualityCmaintenanceToken-efficient Figma MCP server with image export, query DSL, and design token support.5MIT
Related MCP Connectors
The Figma MCP server brings Figma design context directly into your AI workflow.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tunglt1810/figma-mcp-go'
If you have feedback or need assistance with the MCP directory API, please join our Discord server