Are you the author? Sign in to claim
MCP server that lets your AI assistant read and write Figma in real time — no API token, no rate limits. Works with Clau
Let your AI assistant design in Figma — no API token, no rate limits. Works with Claude CLI · Claude Desktop · Codex · VS Code · Cursor · Antigravity · any MCP client.
Prerequisites
node --versionNo install needed — npx downloads and runs everything automatically.
For one project — run inside that project (registers it there only):
claude mcp add figma-console -- npx -y figma-mcp-console@latest
For all your projects at once — add it globally instead:
claude mcp add --scope user figma-console -- npx -y figma-mcp-console@latest
Both work the same at runtime: each Claude session starts its own server instance in that project's directory (so exported assets land in the right project), and all instances share one local bridge to Figma automatically.
Or add to the project's .mcp.json:
{
"mcpServers": {
"figma-console": {
"command": "npx",
"args": ["-y", "figma-mcp-console@latest"]
}
}
}
Settings → Developer → Edit Config (claude_desktop_config.json):
{
"mcpServers": {
"figma-console": {
"command": "npx",
"args": ["-y", "figma-mcp-console@latest"]
}
}
}
Restart Claude Desktop. On Windows use "command": "cmd", "args": ["/c", "npx", "-y", "figma-mcp-console@latest"].
codex mcp add figma-console -- npx -y figma-mcp-console@latest
Or in ~/.codex/config.toml:
[mcp_servers.figma-console]
command = "npx"
args = ["-y", "figma-mcp-console@latest"]
Create .vscode/mcp.json (or Command Palette → "MCP: Add Server"):
{
"servers": {
"figma-console": {
"type": "stdio",
"command": "npx",
"args": ["-y", "figma-mcp-console@latest"],
"cwd": "${workspaceFolder}"
}
}
}
Use it from Copilot Chat in Agent mode.
Create .cursor/mcp.json (or Settings → MCP → Add new MCP server):
{
"mcpServers": {
"figma-console": {
"command": "npx",
"args": ["-y", "figma-mcp-console@latest"]
}
}
}
Agent panel → MCP Servers → Manage MCP servers → View raw config (mcp_config.json):
{
"mcpServers": {
"figma-console": {
"command": "npx",
"args": ["-y", "figma-mcp-console@latest"]
}
}
}
Click Refresh after saving.
Standard MCP stdio transport — any client works. Set the command to npx with args ["-y", "figma-mcp-console@latest"].
First, get the plugin folder onto your machine — pick either option:
📦 Option A — Download from GitHub (recommended)
- Download plugin.zip → unzip it
⌨️ Option B — Get it via command (if the download doesn't work)
- Run
npx figma-mcp-console install-plugin- It saves the plugin to a folder and opens it automatically so you can see
manifest.json
Then, in both cases:
manifest.json (one-time step)Figma → code — right-click a frame → Copy link to selection, then:
Implement this Figma page in our project: <paste link>. Match layout, spacing,
type and colors; export its icons/images into the project; screenshot the frame
and compare when done.
Requirement → Figma:
Design a SaaS landing page in Figma (desktop, 1440px): hero + CTA, three feature
cards, pricing with three plans, footer. Light theme, use auto-layout, then
screenshot and fix anything off.
🎯 Asking the AI to screenshot and compare at the end makes it check its own work instead of guessing.
All AI sessions and all Figma files share one local bridge on port 2000 — the first MCP server to start owns it, later ones join it automatically, and if the owner exits another session takes over within a second. Nothing to configure.
file parameter (file name, case-insensitive), and list_files shows what's connected — so you can say things like "copy the primary color from Design System into the CTA button in Landing Page" in a single session. With one file connected, nothing changes.Exports follow the file extension the AI picks (.svg for vector, .png/.jpg for bitmap, with an optional 0.5–4x scale). It decides based on what you ask — so put your preferences in the project rules file once, and stop repeating yourself:
| AI tool | Rules file |
|---|---|
| Claude CLI / Claude Desktop | CLAUDE.md |
| Codex / opencode | AGENTS.md |
| Cursor | .cursorrules |
| VS Code Copilot | .github/copilot-instructions.md |
| Windsurf | .windsurfrules |
📋 Copy-paste rules (adjust paths — this fits Next.js):
## Figma asset rules
- Icons: SVG into public/icons/. Images: PNG into public/images/.
- File names: kebab-case English (arrow-left.svg, hero-banner.png).
- Read design tokens with get_variable_defs; map them to our theme config.
- After building a screen, screenshot and fix issues before finishing.
| Problem | Fix |
|---|---|
| ❌ "no Figma plugin is connected" | Open the plugin in Figma Desktop (Plugins → Development → Figma MCP Console) and keep its window open — in every file you want the AI to touch |
| 🕐 Plugin says "Searching for MCP server…" | Normal before your AI client connects — the server starts automatically with it. If it never connects, click the status line to retry, or restart your AI client |
| 🗂 "N Figma files are connected; pass the file parameter" | More than one plugin window is open — tell the AI which file you mean (or close the extra plugin windows) |
| 🚫 The MCP server doesn't appear in your AI tool | Check Node.js 18+ is installed (node -v) |
| 📁 Exported files end up in the wrong folder | Exports are written relative to where the server runs. Register it in the project-level config, or tell the AI an explicit export path |
| 🔤 Font errors when creating text | The Figma file uses a font not installed on your machine — the error message names it |
MIT — © Hoang Le Thien An
This is an independent community project, not affiliated with or endorsed by Figma, Inc. "Figma" is a trademark of Figma, Inc.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows