figma-console-mcp-autodocs
Provides tools for extracting design system data, creating and modifying designs, managing variables/tokens, real-time monitoring, FigJam boards, slides presentations, accessibility scanning, version history, and bidirectional token sync with Figma.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@figma-console-mcp-autodocsGenerate autodocs for the button component set"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Figma Console MCP Server β Obra Autodocs fork
This is an Obra Studio fork of
figma-console-mcpby Southleft (MIT). It adds Obra Autodocs integration βfigma_generate_autodocs/figma_remove_autodocsrun the Obra Autodocs generator from inside the Desktop Bridge sandbox, so you can document component-variant sets without switching plugins (which would drop the Bridge connection). Published as@obra-studio/figma-console-mcp. All original functionality and credit belong to Southleft.
Your design system as an API. Model Context Protocol server that bridges design and developmentβgiving AI assistants complete access to Figma for extraction, creation, debugging, and bidirectional token sync.
π The "not connected until restart" bug is fixed (v1.31.0): The Desktop Bridge dropping its connection β and only recovering when you closed the plugin, restarted your MCP client, or killed ports by hand β was caused by zombie MCP processes squatting the WebSocket port range after a bad shutdown. v1.31.0 force-kills them (
SIGTERMβSIGKILL), sweeps the range every 5 minutes, and adds a shutdown backstop so a server can't zombify in the first place. The plugin now reconnects itself (auto-reconnect watchdog + one-click Reconnect button) instead of needing a restart. Update and re-import the plugin once to get the fix. See what's new β
What is this?
Figma Console MCP connects AI assistants (like Claude) to Figma, enabling:
π¨ Design system extraction - Pull variables, components, and styles
π Bidirectional token sync - Export Figma variables to DTCG JSON + CSS custom properties; push code-side edits back to Figma. Replaces Style Dictionary and Tokens Studio's export pipeline.
πΈ Visual debugging - Take screenshots for context
βοΈ Design creation - Create UI components, frames, and layouts directly in Figma
π§ Variable management - Create, update, rename, and delete design tokens
π° Version history & time-series awareness - List versions, diff snapshots, generate markdown changelogs, trace property/variant introduction via binary-search blame
β‘ Real-time monitoring - Watch console logs from the Desktop Bridge plugin
π FigJam boards - Create stickies, flowcharts, tables, and code blocks on collaborative boards
ποΈ Slides presentations - Build and manage Figma Slides decks programmatically
βΏ Accessibility scanning - 14 WCAG design checks with conformance level tagging, component scorecards, axe-core code scanning, design-to-code parity
π‘ Cross-MCP identity - Every tool response carries
_mcp: "figma-console-mcp"and errors are prefixed[figma-console-mcp]so attribution stays unambiguous in agents running multiple Figma MCPsβοΈ Cloud Write Relay - Web AI clients (Claude.ai, v0, Replit) can design in Figma via cloud pairing
π Four ways to connect - Remote SSE, Cloud Mode, NPX, or Local Git
Related MCP server: MCP Figma
β‘ Quick Start
Choose Your Setup
First, decide what you want to do:
I want to... | Setup Method | Time |
Create and modify designs with AI | NPX Setup (Recommended) | ~10 min |
Design from the web (Claude.ai, v0, Replit, Lovable) | ~5 min | |
Contribute to the project | ~15 min | |
Just explore my design data (read-only) | ~2 min |
β οΈ Important: Capability Differences
Capability | NPX / Local Git | Cloud Mode | Remote SSE |
Read design data | β | β | β |
Create components & frames | β | β | β |
Edit existing designs | β | β | β |
Manage design tokens/variables | β | β | β |
FigJam boards (stickies, flowcharts) | β | β | β |
Real-time monitoring (console, selection) | β | β | β |
Desktop Bridge plugin | β | β | β |
Requires Node.js | Yes | No | No |
Total tools available | 106 | 95 | 9 |
Bottom line: Remote SSE is read-only with ~38% of the tools. Cloud Mode unlocks write access from web AI clients without Node.js. NPX/Local Git gives the full 106 tools with real-time monitoring.
π NPX Setup (Recommended)
Best for: Designers who want full AI-assisted design capabilities.
What you get: All 106 tools including design creation, variable management, and component instantiation.
Prerequisites
Node.js 18+ β Check with
node --version(Download)Figma Desktop installed (not just the web app)
An MCP client (Claude Code, Cursor, Windsurf, Claude Desktop, etc.)
Step 1: Get Your Figma Token
Go to Manage personal access tokens in Figma Help
Follow the steps to create a new personal access token
Enter description:
Figma Console MCPSet scopes: File content (Read), File versions (Read), Variables (Read), Comments (Read and write)
Copy the token β you won't see it again! (starts with
figd_)
Step 2: Configure Your MCP Client
Claude Code (CLI):
claude mcp add figma-console -s user -e FIGMA_ACCESS_TOKEN=figd_YOUR_TOKEN_HERE -e ENABLE_MCP_APPS=true -- npx -y figma-console-mcp@latestCursor / Windsurf / Claude Desktop:
Add to your MCP config file (see Where to find your config file below):
{
"mcpServers": {
"figma-console": {
"command": "npx",
"args": ["-y", "figma-console-mcp@latest"],
"env": {
"FIGMA_ACCESS_TOKEN": "figd_YOUR_TOKEN_HERE",
"ENABLE_MCP_APPS": "true"
}
}
}
}π Where to Find Your Config File
If you're not sure where to put the JSON configuration above, here's where each app stores its MCP config:
App | macOS | Windows |
Claude Desktop |
|
|
Claude Code (CLI) |
|
|
Cursor |
|
|
Windsurf |
|
|
Tip for designers: The
~symbol means your home folder. On macOS, that's/Users/YourName/. On Windows, it'sC:\Users\YourName\. You can open these files in any text editor β even TextEdit or Notepad.Can't find the file? If it doesn't exist yet, create it. The app will pick it up on its next restart. Make sure the entire file is valid JSON (watch for missing commas or brackets).
Claude Code users: You can skip manual editing entirely. Just run the
claude mcp addcommand above and it handles everything for you.
Step 3: Connect to Figma Desktop
Desktop Bridge Plugin:
Open Figma Desktop normally (no special flags needed) and open a file
Go to Plugins β Development β Import plugin from manifest...
Select
~/.figma-console-mcp/plugin/manifest.json(stable path, auto-created by the MCP server)Run the plugin in your Figma file β it scans ports 9223β9232 and connects automatically to your running MCP server
Heads-up on plugin updates. Figma caches plugin files (
code.jsandui.html) at the application level. The MCP server refreshes the files at~/.figma-console-mcp/plugin/on every startup, but Figma keeps using its cached copy until you re-import the manifest.Re-importing is required only when a release notes entry says so β typically when the plugin adds a new method the server needs (e.g. v1.22.4, v1.10.0). For most upgrades the new server stays wire-compatible with the previous plugin, and re-importing is optional: you'll still get every functional change, just not the cosmetic plugin-side touches (status-pill copy,
pluginVersionreporting).When you do re-import: Plugins β Manage plugins β re-import
~/.figma-console-mcp/plugin/manifest.json. The stable path never changes, so it's a one-click step.
Step 4: Restart Your MCP Client
Restart your MCP client to load the new configuration.
Step 5: Test It!
Check Figma statusβ Should show connection status with active WebSocket transport
Create a simple frame with a blue backgroundβ Should create a frame in Figma (confirms write access!)
π Complete Setup Guide
For Contributors: Local Git Mode
Best for: Developers who want to modify source code or contribute to the project.
What you get: Same 106 tools as NPX, plus full source code access.
Quick Setup
# Clone and build
git clone https://github.com/southleft/figma-console-mcp.git
cd figma-console-mcp
npm install
npm run build:localConfigure Your MCP Client
Add to your config file (see Where to find your config file):
{
"mcpServers": {
"figma-console": {
"command": "node",
"args": ["/absolute/path/to/figma-console-mcp/dist/local.js"],
"env": {
"FIGMA_ACCESS_TOKEN": "figd_YOUR_TOKEN_HERE",
"ENABLE_MCP_APPS": "true"
}
}
}
}Then follow NPX Steps 3-5 above.
π Complete Setup Guide
π‘ Remote SSE (Read-Only Exploration)
Best for: Quickly evaluating the tool or read-only design data extraction.
What you get: 9 read-only tools β view data, take screenshots, read logs, design-code parity. Cannot create or modify designs.
Claude Desktop (UI Method)
Open Claude Desktop β Settings β Connectors
Click "Add Custom Connector"
Enter:
Name:
Figma Console (Read-Only)URL:
https://figma-console-mcp.southleft.com/sse
Click "Add" β Done! β
OAuth authentication happens automatically when you first use design system tools.
Claude Code
β οΈ Known Issue: Claude Code's native
--transport ssehas a bug. Usemcp-remoteinstead:
claude mcp add figma-console -s user -- npx -y mcp-remote@latest https://figma-console-mcp.southleft.com/sseπ‘ Tip: For full capabilities, use NPX Setup instead of Remote SSE.
Other Clients (Cursor, Windsurf, etc.)
{
"mcpServers": {
"figma-console": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://figma-console-mcp.southleft.com/sse"]
}
}
}Upgrading to Full Capabilities
Ready for design creation? Follow the NPX Setup guide above, or try Cloud Mode if you don't want to install Node.js.
π Complete Setup Guide
βοΈ Cloud Mode (Web AI Clients)
Best for: Using Claude.ai, v0, Replit, or Lovable to create and modify Figma designs β no Node.js required.
What you get: 95 tools including full write access β design creation, variable management, component instantiation, and all REST API tools. Only real-time monitoring (console logs, selection tracking, document changes) requires Local Mode.
Prerequisites
Figma Personal Access Token β Create one here (starts with
figd_)Figma Desktop with the Desktop Bridge plugin installed (see Desktop Bridge setup)
A web AI client that supports MCP (Claude.ai, Lovable, v0, Replit, etc.)
Step 1: Add the MCP Connector
Add this endpoint to your AI platform's MCP settings:
URL: https://figma-console-mcp.southleft.com/mcp
Auth: Your Figma PAT as Bearer token
In Claude.ai: Settings β Connectors β Add Custom Connector β paste the URL above. In Lovable/v0/Replit: Look for "Add MCP Server" or "Integrations" in settings β paste the URL and add your token.
Step 2: Pair the Plugin
Open the Desktop Bridge plugin in Figma Desktop (Plugins β Development β Figma Desktop Bridge)
Tell your AI assistant:
Connect to my Figma pluginThe AI gives you a 6-character pairing code (expires in 5 minutes)
In the plugin: Toggle "Cloud Mode" β enter the code β click Connect
You're paired! Full write access is now available
What You Can Do
Once paired, use natural language to design:
Create a card component with a header image, title, description, and action button
Set up a color token collection with Light and Dark modes
Add a "High Contrast" mode to my existing token collectionHow It Works
Your AI client sends write commands through the cloud MCP server, which relays them via WebSocket to the Desktop Bridge plugin running in your Figma Desktop. The plugin executes the commands using the Figma Plugin API and returns results back through the same path.
AI Client β Cloud MCP Server β Durable Object Relay β Desktop Bridge Plugin β FigmaVariables on any plan: Cloud Mode uses the Plugin API (not the Enterprise REST API), so variable management works on Free, Pro, and Organization plans.
π Complete Setup Guide
π Installation Method Comparison
Feature | NPX (Recommended) | Cloud Mode | Local Git | Remote SSE |
Setup time | ~10 minutes | ~5 minutes | ~15 minutes | ~2 minutes |
Total tools | 106 | 95 | 106 | 9 (read-only) |
Design creation | β | β | β | β |
Variable management | β | β | β | β |
Component instantiation | β | β | β | β |
FigJam boards | β | β | β | β |
Real-time monitoring | β | β | β | β |
Desktop Bridge plugin | β | β | β | β |
Variables (no Enterprise) | β | β | β | β |
Console logs | β (zero latency) | β | β (zero latency) | β |
Read design data | β | β | β | β |
Requires Node.js | Yes | No | Yes | No |
Authentication | PAT (manual) | OAuth (automatic) | PAT (manual) | OAuth (automatic) |
Automatic updates | β
( | β | Manual ( | β |
Source code access | β | β | β | β |
Key insight: Remote SSE is read-only. Cloud Mode adds write access for web AI clients without Node.js. NPX/Local Git give the full 106 tools.
π Complete Feature Comparison
π― Test Your Connection
After setup, try these prompts:
Basic test (all modes):
Navigate to https://www.figma.com and check statusDesign system test (requires auth):
Get design variables from [your Figma file URL]Cloud Mode test:
Connect to my Figma pluginβ Follow the pairing flow, then try: "Create a simple blue rectangle"
Plugin test (Local Mode only):
Show me the primary font for [your theme name]π Authentication
Remote Mode - OAuth (Automatic)
When you first use design system tools:
Browser opens automatically to Figma authorization page
Click "Allow" to authorize (one-time)
Token stored securely and refreshed automatically
Works with Free, Pro, and Enterprise Figma plans
Local Mode - Personal Access Token (Manual)
Visit https://help.figma.com/hc/en-us/articles/8085703771159-Manage-personal-access-tokens
Generate token with scopes: File content (Read), File versions (Read), Variables (Read), Comments (Read and write)
Add to MCP config as
FIGMA_ACCESS_TOKENenvironment variable
π οΈ Available Tools
Status & Diagnostics
figma_get_status- Check WebSocket bridge connection and file contextfigma_diagnose- Designer-readable health check + setup guidancefigma_reconnect- Force reconnect to the Desktop Bridge pluginfigma_navigate- Switch the active file target among connected plugins (Local), or navigate the cloud headless browser (Remote/Cloud)
Console Debugging
figma_get_console_logs- Retrieve console logsfigma_watch_console- Real-time log streamingfigma_clear_console- Clear log bufferfigma_reload_plugin- Reload current page
Visual Debugging
figma_take_screenshot- Capture UI screenshots
Design System Extraction
figma_get_design_system_kit- Full design system in one call β tokens, components, styles, visual specsfigma_get_variables- Extract design tokens/variablesfigma_get_component- Get component data (metadata or reconstruction spec)figma_get_component_for_development- Component + imagefigma_get_component_image- Just the imagefigma_get_styles- Color, text, effect stylesfigma_get_file_data- Full file structurefigma_get_file_for_plugin- Optimized file data
π Shared Library Inspection
figma_get_library_component_by_key- Resolve any component key to full properties + variants + visual specs β without needing the source library file's URL. Works for both COMPONENT_SET and standalone COMPONENT keys. Adaptive compression at >500KB.figma_get_library_components- Discover all components in a library file (requires library file URL/key)figma_get_library_variables- List every variable from team libraries the current file has subscribed. Works on every Figma plan β uses the Plugin API path, not the Enterprise-only REST endpoint. Filter bylibraryName,collectionName, orresolvedType.figma_import_library_variable- Import a library variable into the current file. Returns a localidready to pass tofigma_set_fills/figma_update_variable/ any variable-binding tool.
βοΈ Cloud Relay
figma_pair_plugin- Generate a pairing code to connect a Desktop Bridge plugin via the cloud relay
βοΈ Design Creation (Local Mode + Cloud Mode)
figma_execute- Power tool: Run any Figma Plugin API code to create designsCreate frames, shapes, text, components
Apply auto-layout, styles, effects
Build complete UI mockups programmatically
figma_arrange_component_set- Organize variants into professional component setsConvert multiple component variants into a proper Figma component set
Applies native purple dashed border visualization automatically
Creates white container frame with title, row labels, and column headers
Row labels vertically centered with each grid row
Column headers horizontally centered with each column
Use natural language like "arrange these variants" or "organize as component set"
figma_set_description- Document components with rich descriptionsAdd descriptions to components, component sets, and styles
Supports markdown formatting for rich documentation
Descriptions appear in Dev Mode for developers
π Design-Code Parity (All Modes)
figma_check_design_parity- Compare Figma component specs against code implementation, producing a scored diff report with actionable fix itemsfigma_generate_component_doc- Generate platform-agnostic markdown documentation by merging Figma design data with code-side info
π Token Sync (Local Mode + Cloud Mode)
figma_export_tokens- Export Figma variables to design token files in your codebase. Canonical DTCG JSON + CSS custom properties out of the box. Diff-aware merge against existing source files (only writes what changed).tokens.config.jsonautodiscovery means zero-arg calls after first setup. Replaces Style Dictionary and Tokens Studio's export pipeline for popular styling methods.figma_import_tokens- Push code-side token edits back to Figma. Diff against current Figma state, apply only the deltas. Round-trip safe β Figma variable IDs preserved in DTCG$extensions["figma-console-mcp"]so renames on either side don't create duplicates. Dry-run default for safety. In Cloud Mode, pass tokens inline viapayloadorfiles(no local filesystem access).
π§ Variable Management (Local Mode + Cloud Mode)
figma_create_variable_collection- Create new variable collections with modesfigma_create_variable- Create COLOR, FLOAT, STRING, or BOOLEAN variablesfigma_update_variable- Update variable values in specific modesfigma_rename_variable- Rename variables while preserving valuesfigma_delete_variable- Delete variablesfigma_delete_variable_collection- Delete collections and all their variablesfigma_add_mode- Add modes to collections (e.g., "Dark", "Mobile")figma_rename_mode- Rename existing modesfigma_batch_create_variables- Create up to 100 variables in one call (10-50x faster)figma_batch_update_variables- Update up to 100 variable values in one callfigma_setup_design_tokens- Create complete token system (collection + modes + variables) atomically
π FigJam Board Tools (Local Mode + Cloud Mode)
figjam_create_sticky- Create a sticky note with color optionsfigjam_create_stickies- Batch create up to 200 stickiesfigjam_create_connector- Connect nodes with labeled connector linesfigjam_create_shape_with_text- Create flowchart shapes (diamond, ellipse, etc.)figjam_create_table- Create tables with cell datafigjam_create_code_block- Add code snippets with syntax highlightingfigjam_auto_arrange- Arrange nodes in grid, horizontal, or vertical layoutsfigjam_get_board_contents- Read all content from a FigJam boardfigjam_get_connections- Read the connection graph (flowcharts, relationships)
ποΈ Slides Presentation Tools (Local Mode + Cloud Mode)
figma_list_slides- List all slides with IDs, positions, and skip statusfigma_get_slide_content- Get the full content tree of a slidefigma_get_slide_grid- Get the 2D grid layout of the presentationfigma_get_slide_transition- Read transition settings for a slidefigma_get_focused_slide- Get the currently focused slidefigma_create_slide- Create a new blank slidefigma_delete_slide- Delete a slide from the presentationfigma_duplicate_slide- Clone an existing slidefigma_reorder_slides- Reorder slides via new 2D grid layoutfigma_set_slide_transition- Set transition effects (22 styles, 8 curves)figma_skip_slide- Toggle whether a slide is skipped in presentation modefigma_add_text_to_slide- Add text to a slide with custom fonts, colors, alignment, and wrappingfigma_add_shape_to_slide- Add rectangle or ellipse shapes with colorfigma_set_slide_background- Set a slide's background color (creates or updates)figma_get_text_styles- Get all local text styles with IDs, fonts, and sizesfigma_set_slides_view_mode- Toggle grid vs. single-slide viewfigma_focus_slide- Navigate to a specific slide
π Detailed Tool Documentation
π Example Prompts
Cloud Mode (Web AI Clients)
Connect to my Figma plugin so we can start designing
Pair with my Figma file and create a login form with email, password, and submit button
Set up a brand color token collection with Light and Dark modesPlugin Debugging
Navigate to my Figma plugin and show me any console errors
Watch the console for 30 seconds while I test my plugin
Get the last 20 console logsDesign System Extraction
Get all design variables from https://figma.com/design/abc123
Extract color styles and show me the CSS exports
Get the Button component with a visual reference image
Get the Badge component in reconstruction format for programmatic creationDesign Creation (Local Mode + Cloud Mode)
Create a success notification card with a checkmark icon and message
Design a button component with hover and disabled states
Build a navigation bar with logo, menu items, and user avatar
Create a modal dialog with header, content area, and action buttons
Arrange these button variants into a component set
Organize my icon variants as a proper component set with the purple borderVariable Management (Local Mode + Cloud Mode)
Create a new color collection called "Brand Colors" with Light and Dark modes
Add a primary color variable with value #3B82F6 for Light and #60A5FA for Dark
Rename the "Default" mode to "Light Theme"
Add a "High Contrast" mode to the existing collectionDesign-Code Parity
Compare the Button component in Figma against our React implementation
Check design parity for the Card component before sign-off
Generate component documentation for the Dialog from our design systemFigJam Boards
Create a retrospective board with "Went Well", "To Improve", and "Action Items" columns
Build a user flow diagram for the checkout process with decision points
Read this brainstorming board and summarize the key themes
Generate an affinity map from these meeting notes
Create a comparison table of our three platform optionsSlides Presentations
List all slides and tell me which ones are skipped
Add a new slide with the title "Thank You" in 72px text
Set a DISSOLVE transition on the first slide with 0.5 second duration
Duplicate slide 5 for an A/B comparison
Skip slides 8 and 9 β they're not ready for the client presentation
Reorder my slides so the conclusion comes before Q&AVisual Debugging
Take a screenshot of the current Figma canvas
Navigate to this file and capture what's on screenπ More Use Cases & Examples
π¨ AI-Assisted Design Creation
Requires Desktop Bridge: This feature works with Local Mode (NPX or Local Git) and Cloud Mode. Remote SSE without Cloud Mode pairing is read-only and cannot create or modify designs.
One of the most powerful capabilities of this MCP server is the ability to design complete UI components and pages directly in Figma through natural language conversation with any MCP-compatible AI assistant like Claude Desktop or Claude Code.
What's Possible
Create original designs from scratch:
Design a login card with email and password fields, a "Forgot password?" link,
and a primary Sign In button. Use 32px padding, 16px border radius, and subtle shadow.Leverage existing component libraries:
Build a dashboard header using the Avatar component for the user profile,
Button components for actions, and Badge components for notifications.Generate complete page layouts:
Create a settings page with a sidebar navigation, a main content area with form fields,
and a sticky footer with Save and Cancel buttons.How It Works
You describe what you want in plain English
The AI searches your component library using
figma_search_componentsto find relevant building blocksComponents are instantiated with proper variants and properties via
figma_instantiate_componentCustom elements are created using the full Figma Plugin API via
figma_executeVisual validation automatically captures screenshots and iterates until the design looks right
Who Benefits
Role | Use Case |
Designers | Rapidly prototype ideas without manual frame-by-frame construction. Explore variations quickly by describing changes. |
Developers | Generate UI mockups during planning discussions. Create visual specs without switching to design tools. |
Product Managers | Sketch out feature concepts during ideation. Communicate visual requirements directly to stakeholders. |
Design System Teams | Test component flexibility by generating compositions. Identify gaps in component coverage. |
Agencies | Speed up initial concept delivery. Iterate on client feedback in real-time during calls. |
Example Workflows
Brand New Design:
"Create a notification toast with an icon on the left, title and description text, and a dismiss button. Use our brand colors."
The AI creates custom frames, applies your design tokens, and builds the component from scratch.
Component Composition:
"Build a user profile card using the Avatar component (large size), two Button components (Edit Profile and Settings), and a Badge for the user's status."
The AI searches your library, finds the exact components, and assembles them with proper spacing and alignment.
Design Iteration:
"The spacing feels too tight. Increase the gap between sections to 24px and make the heading larger."
The AI modifies the existing design, takes a screenshot to verify, and continues iterating until you're satisfied.
Visual Validation
The AI automatically follows a validation workflow after creating designs:
Create β Execute the design code
Screenshot β Capture the result
Analyze β Check alignment, spacing, and visual balance
Iterate β Fix any issues detected
Verify β Final screenshot to confirm
This ensures designs aren't just technically correctβthey look right.
π¨ Desktop Bridge Plugin (Recommended Connection)
The Figma Desktop Bridge plugin is the recommended way to connect Figma to the MCP server. It communicates via WebSocket β no special Figma launch flags needed, and it persists across Figma restarts.
Setup
Open Figma Desktop (normal launch β no debug flags needed)
Go to Plugins β Development β Import plugin from manifest...
Select
figma-desktop-bridge/manifest.jsonfrom the figma-console-mcp directoryRun the plugin in your Figma file β it auto-connects via WebSocket (scans ports 9223β9232)
Ask your AI: "Check Figma status" to verify the connection
One-time import. Once imported, the plugin stays in your Development plugins list. Just run it whenever you want to use the MCP.
π Desktop Bridge Documentation
Capabilities
Read Operations:
Variables without Enterprise API
Reliable component descriptions (bypasses API bugs)
Multi-mode support (Light/Dark/Brand variants)
Real-time selection tracking and document change monitoring
Write Operations:
Design Creation - Create frames, shapes, text, components via
figma_executeVariable Management - Full CRUD operations on variables and collections
Mode Management - Add and rename modes for multi-theme support
How the Transport Works
The MCP server communicates via WebSocket through the Desktop Bridge plugin
The server tries port 9223 first, then automatically falls back through ports 9224β9232 if needed
The plugin scans all ports in the range and connects to every active server it finds
All 106 tools work through the WebSocket transport
Multiple files: The WebSocket server supports multiple simultaneous plugin connections β one per open Figma file. Each connection is tracked by file key with independent state (selection, document changes, console logs).
Environment variables:
FIGMA_WS_PORTβ Override the preferred WebSocket port (default: 9223). The server will fall back through a 10-port range starting from this value if the preferred port is occupied.FIGMA_WS_HOSTβ Override the WebSocket server bind address (default:localhost). Set to0.0.0.0when running inside Docker so the host machine can reach the MCP server.
Cloud Mode: The plugin also supports a Cloud Mode toggle for pairing with web AI clients (Claude.ai, v0, Replit, Lovable). Toggle "Cloud Mode" in the plugin UI, enter the 6-character pairing code from your AI assistant, and click Connect. See Cloud Mode for details.
Plugin Limitation: In Local Mode, works with NPX or Local Git. In Cloud Mode, pairs with the remote MCP endpoint. Remote SSE without Cloud Mode pairing is read-only.
π Multi-Instance Support (v1.10.0)
Figma Console MCP now supports multiple simultaneous instances β perfect for designers and developers who work across multiple projects or use Claude Desktop's Chat and Code tabs at the same time.
The Problem (Before v1.10.0)
When two processes tried to start the MCP server (e.g., Claude Desktop's Chat tab and Code tab), the second one would crash with EADDRINUSE because both competed for port 9223.
How It Works Now
The server tries port 9223 first (the default)
If that port is already taken, it automatically tries 9224, then 9225, and so on up to 9232
The Desktop Bridge plugin in Figma connects to all active servers simultaneously
Every server instance receives real-time events (selection changes, document changes, console logs)
figma_get_statusshows which port you're on and lists other active instances
What This Means for You
Scenario | Before v1.10.0 | Now |
Two Claude Desktop tabs (Chat + Code) | Second tab crashes | Both work independently |
Multiple CLI terminals on different projects | Only one can run | All run simultaneously |
Claude Desktop + Claude Code CLI | Port conflict | Both coexist |
Do I Need to Do Anything?
Nothing. Multi-instance support is fully automatic:
Each MCP server claims the next available port in the range
The Desktop Bridge plugin scans all ports and connects to every active server
Orphaned processes from closed tabs are automatically cleaned up on startup
No manual port management β the plugin already scans the whole range
(Re-importing the manifest is only required when the plugin code itself changes β e.g. after a package update. Port-range scanning is already in the shipped plugin.)
π§© MCP Apps (Experimental)
Figma Console MCP includes support for MCP Apps β rich interactive UI experiences that render directly inside any MCP client that supports the MCP Apps protocol extension. Built with the official @modelcontextprotocol/ext-apps SDK.
What are MCP Apps? Traditional MCP tools return text or images to the AI. MCP Apps go further β they render interactive HTML interfaces inline in the chat, allowing users to browse, filter, and interact with data directly without consuming AI context.
Token Browser
An interactive design token explorer.
Usage: Ask Claude to "browse the design tokens" or "show me the design tokens" while connected to a Figma file.
Features:
Browse all tokens organized by collection with expandable sections
Filter by type (Colors, Numbers, Strings) and search by name/description
Per-collection mode columns (Light, Dark, Custom) matching Figma's Variables panel
Color swatches, alias resolution, and click-to-copy on any value
Works without Enterprise plan via Desktop Bridge (local mode)
Design System Dashboard
A Lighthouse-style health scorecard that audits your design system across six categories.
Usage: Ask Claude to "audit the design system" or "show me design system health" while connected to a Figma file.
Features:
Overall weighted score (0β100) with six category gauges: Naming, Tokens, Components, Accessibility, Consistency, Coverage
Expandable category sections with individual findings, severity indicators, and actionable details
Diagnostic locations linking findings to specific variables, components, or collections
Tooltips explaining each check's purpose and scoring criteria
Refresh button to re-run the audit without consuming AI context
Pure scoring engine with no external dependencies β all analysis runs locally
Enabling MCP Apps:
MCP Apps are enabled by default in the setup configurations above (via "ENABLE_MCP_APPS": "true"). If you set up before v1.10.0 and don't have this in your config, add it to your env section:
"env": {
"FIGMA_ACCESS_TOKEN": "figd_YOUR_TOKEN_HERE",
"ENABLE_MCP_APPS": "true"
}Note: MCP Apps require an MCP client with ext-apps protocol support (e.g. Claude Desktop). This feature is experimental and the protocol may evolve.
Future MCP Apps Roadmap
Planned MCP Apps:
Component Gallery β Visual browser for searching and previewing components with variant exploration
Style Inspector β Interactive panel for exploring color, text, and effect styles with live previews
Variable Diff Viewer β Side-by-side comparison of token values across modes and branches
The architecture supports adding new apps with minimal boilerplate β each app is a self-contained module with its own server-side tool registration and client-side UI.
π Advanced Topics
Setup Guide - Complete setup guide for all MCP clients
Self-Hosting - Deploy your own instance on Cloudflare
Architecture - How it works under the hood
OAuth Setup - Configure OAuth for self-hosted deployments
Troubleshooting - Common issues and solutions
π€ vs. Figma Official MCP
Figma Console MCP (This Project) - Debugging, data extraction, and design creation
β Real-time console logs from Figma plugins
β Screenshot capture and visual debugging
β Error stack traces and runtime monitoring
β Raw design data extraction (JSON)
β FigJam board creation and reading (stickies, flowcharts, tables)
β Works remotely or locally
Figma Official Dev Mode MCP - Code generation
β Generates React/HTML code from designs
β Tailwind/CSS class generation
β Component boilerplate scaffolding
Use both together for the complete workflow: generate code with Official MCP, then debug and extract data with Console MCP.
π€οΈ Roadmap
Current Status: v1.31.0 (Stable) - Production-ready with a self-healing Desktop Bridge connection (zombie-process reaper + auto-reconnect watchdog β fixes the recurring "not connected until restart" bug), native variable binding on fills/strokes + typography control in the write tools, shared-library inspection (key-based component resolution + library variable read/import without Enterprise plan), 10-format token export pipeline (DTCG, CSS, Tailwind v4, Tailwind v3, SCSS, TS module, JSON flat/nested, Style Dictionary v3, Tokens Studio), bidirectional Figmaβcode token sync, version history & time-series awareness, FigJam + Slides support, Cloud Write Relay, Design System Kit, WebSocket-only connectivity, smart multi-file tracking, 106 tools (Local) / 95 tools (Cloud) / 9 tools (Remote read-only), Comments API, cross-MCP identity disambiguation, and MCP Apps.
Recent Releases:
v1.31.0 - Fixes the most-reported reliability bug: the Desktop Bridge connection dropping and staying down until you closed the plugin, restarted your MCP client, or killed ports by hand. Root cause was zombie MCP server processes squatting the WebSocket port range (9223β9232) after a bad shutdown. The reaper now escalates
SIGTERMβSIGKILL(a hung server that ignores graceful shutdown can no longer survive), sweeps the range every 5 minutes via anunref'd periodic reaper, and a shutdown backstop prevents a server from zombifying in the first place. The redesigned Desktop Bridge plugin adds an auto-reconnect watchdog (re-probes every ~12s while disconnected), a context-aware Pause / Resume / Reconnect button, and a live server-count badge. No new tools; plugin re-import required (bridgeui.html+code.jschanged). 1190 tests passing, including an integration test that spawns a realSIGTERM-ignoring process and asserts the reaper kills it.v1.30.0 - Native variable binding + typography in the structured write tools, closing the Plugin API gaps that used to force raw
figma_execute.figma_set_fills/figma_set_strokesaccept avariableIdto bind a fill/stroke to a color variable viasetBoundVariableForPaint(any plan, via the bridge).figma_set_textgainsfontFamily/fontStylewith space-insensitive normalization (SemiBoldβSemi Bold) and gracefulRegularfallback.figma_instantiate_componentpre-loads instance text fonts before applying overrides (fixes silently-skipped text overrides on non-Regular weights) and returns awarningsarray for failed overrides. Also fixes a mixed-font crash infigma_set_textand aui.htmlrelay that was dropping new message fields. No new tools; plugin re-import required (bridgeui.html+code.jschanged). Validated live; 1185 tests passing.v1.29.2 - Bug fix:
figma_generate_component_docnow renders Figma component descriptions faithfully and reliably tags atomic-design level. Single-#headings in descriptions render as real sections (Usage Guidelines, Implementation Considerations, Accessibility Requirements, Content Configuration) instead of leaking as- # Headinglist items; frontmatterdescriptiontakes the first sentence instead of truncating on the word "Accessibility"; the generated Figma URL no longer doubles?node-id=; and the component's atomic level (atom/molecule/organism/template) is auto-detected via a singleids=<node>file request + divider walk-back, with no dependency on library publishing. No new tools; plugin re-import not required.v1.29.1 - Bug fix:
figma_get_design_system_kitnow resolves variables bridge-first (Desktop Bridge / cloud relay β REST fallback) instead of calling the Enterprise-only Variables REST API directly. Non-Enterprise users no longer hit a 403 on the kit's token section when a bridge is connected, and a REST 403 now points the caller back to the bridge instead of dead-ending. 7 new tests, 1185 total passing. No new tools; plugin re-import not required.v1.29.0 - Shared library inspection: three new tools close the gap between "I have a component key" and "I can actually use it."
figma_get_library_component_by_keyresolves any 40-char component key to fullcomponentPropertyDefinitions+ variants (with their published keys) + per-variant visual specs β without needing the source library file's URL.figma_get_library_variableslists library tokens via Plugin API (works on every Figma plan; the REST equivalent is Enterprise-only).figma_import_library_variableimports a library token to the current file so it can be bound to nodes. 27 new tests, 1178 total passing. Plugin re-import optional.v1.28.1 - Bug fix patch surfacing from live-fire testing of the v1.28.0 formatters against multi-tier semantic-token design systems. Fixes: Tailwind v3 emitted empty
module.exportsfor alias-only sets (now resolves alias chains to literal values); TypeScript module + JSON flat + JSON nested formatters emitted"{alias.path}"strings as literal values (now resolves); Tailwind v4 namespace-prefix doubling (--color-theme-color-Xis now--color-theme-X). AddsresolveAliasChainpublic helper. 1151 tests still passing.v1.28.0 - Full formatter coverage for
figma_export_tokens. Seven new output formats: Tailwind v4@theme inline, Tailwind v3 config, SCSS variables, TypeScript module, JSON flat/nested, Style Dictionary v3, Tokens Studio multi-file. Combined with DTCG + CSS variables, ships 10 fully-implemented output formats with zero third-party build-tool dependencies. Tool description updated, docs/tools.md table all-green. 22 new Jest tests, 1151 total passing.v1.27.1 - Documentation patch. No code behavior changes. Sweeps stale "Phase 1 ships with DTCG only" claims across tool descriptions, error messages, and internal comments after CSS variables formatter and the apply phase shipped during the v1.27.0 dev cycle. Refreshes README banner + capability bullets + roadmap. Adds
Phase 3.5: Stale-Content Auditto the release runbook so future releases get a strict pre-publish grep sweep across banners, tool descriptions, error messages, source comments, and tool-count consistency.v1.27.0 - Bidirectional token sync:
figma_export_tokens+figma_import_tokensreplace Style Dictionary and Tokens Studio's export pipeline. Canonical DTCG JSON + CSS custom properties. Diff-aware merge with round-trip ID preservation via$extensions["figma-console-mcp"]. Apply phase pushes hex-value edits back to Figma via the plugin bridge. Verified end-to-end against 713-token + 280-token design systems.v1.26.0 - Internal cleanup + cross-MCP identity: Local-mode CDP/Puppeteer transport removed entirely (WebSocket-only).
figma_diagnosetool for designer-readable health checks. Every response tagged_mcp: "figma-console-mcp"; errors prefixed[figma-console-mcp]so attribution is unambiguous when running multiple Figma MCPs. Plugin status pill now readsLocal Β· ready/Cloud Β· ready/Local + Cloud Β· ready. Net diff: β7,299 lines, plugin re-import optional.v1.25.0 - Description + Dev Mode annotation tracking in
figma_diff_versionsvia plugin session buffer. Description and annotation edits made during a session now appear in diff output (REST API doesn't return these β bridged through the plugin'sdocumentchangelistener).v1.24.0 - Honest scope coverage on version diffs.
scope_coverageobject surfaces whatfigma_diff_versionsdoes and doesn't track; always-on coverage warnings prevent silent invisibility on token-value changes and component-instance placements.v1.23.0 - Version History & Time-Series Awareness: 6 new tools (list versions, snapshot any past version, diff two versions for component/binding deltas, generate markdown changelogs, trace property/variant introduction via binary-search blame walker). Author attribution flows from autosaves, not just labeled releases.
v1.17.0 - Figma Slides support: 15 tools for managing presentations.
v1.16.0 - FigJam support: 9 tools for creating and reading FigJam boards.
v1.12.0 - Cloud Write Relay: web AI clients can create and modify Figma designs without Node.js.
v1.11.0 - Complete CDP removal, improved multi-file active tracking with focus detection.
v1.10.0 - Multi-instance support (dynamic port fallback 9223β9232, multi-connection plugin, instance discovery).
v1.9.0 - Figma Comments tools, improved port conflict detection.
v1.8.0 - WebSocket Bridge transport (CDP-free connectivity), real-time selection/document tracking.
v1.7.0 - MCP Apps (Token Browser, Design System Dashboard), batch variable operations, design-code parity tools.
Coming Next:
Token sync β parsers + import-side apply expansion - Parsers for non-DTCG input (Tokens Studio, CSS vars, Tailwind v4, Tailwind v3 config, SCSS, Style Dictionary v3, JSON flat/nested). Plus
toCreateapply orchestration,toDeleteforreplacestrategy, alias-target updates, and cross-library variable resolution viagetVariableByIdAsyncso cross-library aliases render as realvar(--target)references instead of comments.Component template library - Common UI pattern generation
Visual regression testing - Screenshot diff capabilities
Design linting - Automated compliance and accessibility checks
π Full Roadmap
π» Development
git clone https://github.com/southleft/figma-console-mcp.git
cd figma-console-mcp
npm install
# Local mode development
npm run dev:local
# Cloud mode development
npm run dev
# Build
npm run buildπ Development Guide
π License
MIT - See LICENSE file for details.
π Links
π Documentation Site β Complete guides, tutorials, and API reference
π Local Docs β Documentation source files
π Report Issues
π¬ Discussions
π¨ Figma API
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Obra-Studio/figma-console-mcp-autodocs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server