Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Figma Mcp Console

FreeMaintained

Figma MCP server for AI coding assistants — real-time read/write via a Figma Desktop plugin. No API token, no rate limits.

GitHubEmbed

About

Figma MCP server for AI coding assistants — real-time read/write via a Figma Desktop plugin. No API token, no rate limits.

README

npm MCP License: MIT

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.

✨ What can it do?

  • 🖥️ Figma → Code — paste a link to a Figma frame, and the AI implements that exact screen in your codebase, exporting the design's icons and images into your project instead of inventing its own
  • 🎨 Requirement → Figma — paste a requirement, and the AI draws the screen in Figma, then screenshots its own work and fixes what's off
  • 🔁 Token sync — pull design tokens into your theme config, or build a design system in Figma from your code
  • ✏️ Bulk editing — rename layers, replace text across a page, reorganize frames

⚡ Quick start

Prerequisites

  • Node.js 18+ — check with node --version
  • Figma Desktop app (the web app can't run development plugins)

Step 1 — Add the server to your AI tool

No install needed — npx downloads and runs everything automatically.

Claude CLI

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"]
    }
  }
}
Claude Desktop

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 CLI
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"]
VS Code (GitHub Copilot)

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.

Cursor

Create .cursor/mcp.json (or Settings → MCP → Add new MCP server):

{
  "mcpServers": {
    "figma-console": {
      "command": "npx",
      "args": ["-y", "figma-mcp-console@latest"]
    }
  }
}
Antigravity

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.

Other MCP clients (opencode, Windsurf, Cline, Gemini CLI, Zed, …)

Standard MCP stdio transport — any client works. Set the command to npx with args ["-y", "figma-mcp-console@latest"].

Step 2 — Install the Figma plugin

First, get the plugin folder onto your machine — pick either option:

📦 Option A — Download from GitHub (recommended)

  1. Download plugin.zipunzip it

⌨️ Option B — Get it via command (if the download doesn't work)

  1. Run npx figma-mcp-console install-plugin
  2. It saves the plugin to a folder and opens it automatically so you can see manifest.json

Then, in both cases:

  1. In Figma Desktop: Plugins → Development → Import plugin from manifest… → select manifest.json (one-time step)
  2. Run it: Plugins → Development → Figma MCP Console — and keep the plugin window open while you work. 🟢 Green dot = connected
  3. Working with several Figma files at once? Run the plugin in each file — every window connects to the same local bridge, and the AI picks the right file per call

Step 3 — Try it

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.


🗂 Multiple files, multiple projects

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.

  • Several Figma files: run the plugin in each file (its window shows Connected · <file name>). With more than one file connected, every tool accepts a 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.
  • Several code projects: each AI session (one per project) reaches every connected file through the shared bridge. State which file you mean in the prompt and each session works with the right one.

🧠 Teach your AI what to export, and where

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.

🔧 Troubleshooting

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

📄 License

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.

from github.com/hoangann2000/figma-mcp-console

Install Figma Mcp Console in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install figma-mcp-console

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add figma-mcp-console -- npx -y figma-mcp-console

Step-by-step: how to install Figma Mcp Console

FAQ

Is Figma Mcp Console MCP free?

Yes, Figma Mcp Console MCP is free — one-click install via Unyly at no cost.

Does Figma Mcp Console need an API key?

No, Figma Mcp Console runs without API keys or environment variables.

Is Figma Mcp Console hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Figma Mcp Console in Claude Desktop, Claude Code or Cursor?

Open Figma Mcp Console on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Changes

Versions and requested access over time.

  • New version published
  • New version published

Related MCPs

LibreOffice Tools

Enables AI agents to read, write, and edit Office documents via LibreOffice with token-efficient design. Supports multiple formats including DOCX, XLSX, PPTX, a

passerbyflutterby passerbyflutter

dannote/figma-use

Full Figma control: create shapes, text, components, set styles, auto-layout, variables, export. 80+ tools.

dannoteby dannote

Logo.dev

Search and retrieve company logos by brand or domain. Customize size, format, and theme to match your design needs. Accelerate design, prototyping, and content

NOVA-3951by NOVA-3951

Design Inspiration Server

Searches top design platforms like Dribbble and Behance to provide UI inspiration, color palettes, and layout patterns via the Serper API. It allows users to re

YonasValentinby YonasValentin

PIX4Dmatic

Enables GUI automation for controlling PIX4Dmatic on Windows through MCP. Supports launching, focusing, capturing screenshots, sending hotkeys, clicking UI elem

jangjo123by jangjo123

Figma

Extract design specs and assets

Figmaby Figma

mcp-dockmaster

An Open-Sourced UI to install and manage MCP servers for Windows, Linux and macOS.

by Community

ariekogan/ateam-mcp

Build, validate, and deploy multi-agent AI solutions on the ADAS platform. Design skills with tools, manage solution lifecycle, and connect from any AI environm

ariekoganby ariekogan

thinkchainai/mcpbundles

MCP Bundles: Create custom bundles of tools and connect providers with OAuth or API keys. Use one MCP server across thousands of integrations, with programmatic

thinkchainaiby thinkchainai

arikusi/nakkas

MCP server that turns AI into an SVG artist. One rendering engine with JSON config, AI controls all design parameters. CSS @keyframes + SMIL animations, 16+ ele

arikusiby arikusi

Compare Figma Mcp Console with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All design MCPs