skillpack.co
All skills

Figma MCP Server Guide

active

Official Figma MCP. Trust leader with triple partnership (OpenAI Codex, GitHub Copilot, Claude Code), Code Connect integration, bidirectional since Mar 6 2026. 14 tools, 14+ client support, two server modes.

Connector
Composite
Complexity
designui

62/100

Trust

431

Stars

5

Evidence

91 KB

Repo size

Product screenshot

Figma MCP Server Guide in action

Videos

Reviews, tutorials, and comparisons from the community.

VS Code Live - Code with Context using Figma MCP Server

Visual Studio Code·2025-10-24

How to Convert Figma UI to Code with 100% Accuracy | Figma MCP Tutorial

TECH VANSH·2025-10-22

VS Code Live - v1.105 Release

Visual Studio Code·2025-10-16

Repo health

62/100

1w ago

Last push

1

Open issues

28

Forks

6

Contributors

Editorial verdict

The trust leader with unmatched long-term durability — triple partnership with OpenAI Codex, GitHub Copilot, and Claude Code. Bidirectional since Mar 6 2026. Wins specifically when your team has Code Connect configured. Without it, Framelink produces cleaner context. Pricing is the primary barrier: free tier (6 calls/month) is non-functional.

Public evidence

strong2026-03
Triple AI platform partnership: GitHub Copilot, Claude Code, OpenAI Codex

Independently listed by GitHub Copilot, Claude Code MCP catalog, and OpenAI Codex — three separate platform integrations confirming sustained enterprise investment. No community MCP has matched this distribution breadth.

Three independent platform listingsGitHub, Anthropic, OpenAI (independent platforms)

How does this compare?

See side-by-side metrics against other skills in the same category.

COMPARE SKILLS →

Where it wins

Triple partnership with OpenAI Codex, GitHub Copilot, and Claude Code — unmatched long-term durability signal

Code Connect maps Figma components directly to your codebase components — no other server has this

14 tools, 14+ supported clients (VS Code, Cursor, Claude Code, Codex, Warp, Factory, etc.)

Two deployment variants (Remote + Desktop) signal sustained platform investment

Bidirectional since Mar 6 2026: generate_figma_design sends rendered UI back to Figma as editable frames

Figma MCP Catalog signals platform-level commitment — this won't be abandoned

Where to be skeptical

Pricing is the primary barrier: Free tier (6 calls/month) is non-functional. Pro ($15/seat): 200 calls/day. Code Connect requires Org ($45/seat).

Without Code Connect, produces prescriptive output — 'context poisoning' where LLM mimics auto-generated structure (CTO Guide)

HN reception was cold: 14 points, 0 comments on launch. Community alternatives significantly outperformed.

Accuracy complaints on Figma Forum: '85%-90% wrong... mostly unusable' (depends on LLM + design file quality, not unique to Official)

Low guide-repo star count (418) is misleading — the server is embedded in Figma's infrastructure

Ranking in categories

Know a better alternative?

Submit evidence and we'll run the full pipeline.

SUBMIT →

Similar skills

Raw GitHub source

GitHub README peek

Constrained peek so you can sanity-check the source material without leaving the site.

Figma MCP Server Guide

The Figma MCP server brings Figma directly into your workflow by providing important design information and context to AI agents generating code from Figma design files.

[!NOTE] Rate limits apply to Figma MCP server tools that read data from Figma. Some tools, such as those that write to Figma files, are exempt from the rate limits. <br><br> Users on the Starter plan or with View or Collab seats on paid plans will be limited to up to 6 tool calls per month. <br><br> Users with a Dev or Full seat on the Professional, Organization, or Enterprise plans have per minute rate limits, which follow the same limits as the Tier 1 Figma REST API. As with Figma’s REST API, Figma reserves the right to change rate limits.

For the complete set of Figma MCP server docs, see our developer documentation.

Features

  • Generate code from selected frames

    Select a Figma frame and turn it into code. Great for product teams building new flows or iterating on app features.

  • Extract design context

    Pull in variables, components, and layout data directly into your IDE. This is especially useful for design systems and component-based workflows.

  • Code smarter with Code Connect

    Boost output quality by reusing your actual components. Code Connect keeps your generated code consistent with your codebase.

    Learn more about Code Connect →

  • Generate Figma designs from web pages (rolling out)

    Capture, import, or convert a web page into a Figma design directly from your AI coding agent.

Installation & Setup

Connect to the Figma MCP server

Different MCP clients require slightly different setups. Follow the instructions below for your specific client to connect to the Figma MCP server.

VS Code

  1. Use the shortcut ⌘ Shift P to search for MCP:Add Server.
  2. Select HTTP.
  3. Paste the server url https://mcp.figma.com/mcp in the search bar. Then hit Enter.
  4. When you're prompted for a server ID, enter figma.
  5. Select whether you want to add this server globally or only for the current workspace. Once confirmed, you'll see a configuration like this in your mcp.json file:
{
  "servers": {
    "figma": {
      "type": "http",
      "url": "https://mcp.figma.com/mcp"
    }
  }
}
  1. Open the chat toolbar using ⌥⌘B or ⌃⌘I and switch to Agent mode.
  2. With the chat open, type in #get_design_context to confirm that the Figma MCP server tools are available. If no tools are listed, restart VS Code.

[!NOTE] You must have GitHub Copilot enabled on your account to use MCP in VS Code.

For more information, see VS Code's official documentation.

Cursor

The recommended way to set up the Figma MCP server in Cursor is by installing the Figma Plugin, which includes MCP server settings as well as Agent Skills for common workflows.

Install the plugin by typing the following command in Cursor's agent chat:

/add-plugin figma

The plugin includes:

  • MCP server configuration for the Figma MCP server
  • Skills for implementing designs, connecting components via Code Connect, and creating design system rules
  • Rules for proper asset handling from the Figma MCP server
<details> <summary>Manual setup</summary>
  1. Open Cursor → Settings → Cursor Settings.
  2. Go to the MCP tab.
  3. Click + Add new global MCP server.
  4. Enter the following configuration and save:
{
  "mcpServers": {
    "figma": {
      "url": "https://mcp.figma.com/mcp"
    }
  }
}

For more information, see Cursor's official documentation.

</details>

Claude Code

The recommended way to set up the Figma MCP server in Claude Code is by installing the Figma Plugin, which includes MCP server settings as well as Agent Skills for common workflows.

Run the following command to install the plugin from Anthropic's official plugin marketplace.

claude plugin install figma@claude-plugins-official

Learn more about Anthropic's Claude Code Plugins and Agent Skills.

<details> <summary>Manual setup</summary>
  1. Open your terminal and run:
claude mcp add --transport http figma https://mcp.figma.com/mcp
  1. Use the following commands to check MCP settings and manage servers:
  • List all configured servers
    claude mcp list
    
  • Get details for a specific server
    claude mcp get my-server
    
  • Remove a server
    claude mcp remove my-server
    
View on GitHub →