Framelink MCP for Figma

0.11.0 · active · verified Tue Apr 21

Figma Developer MCP (Model Context Protocol) is a Node.js server designed to bridge Figma design data with AI-powered coding agents, such as Cursor. Currently at version 0.11.0, the package sees a rapid release cadence, often with multiple updates within a month, indicating active development. Its core function is to fetch relevant metadata from the Figma API, then simplify and translate this data into a format optimized for AI models, focusing on layout and styling information. This targeted data reduction helps AI agents accurately "one-shot" designs into various frameworks, improving their precision compared to alternative methods like screenshot analysis. It differentiates itself by acting as a specialized intermediary, reducing context overload for AI models and facilitating direct integration of design specifications into code generation workflows via the Model Context Protocol.

Common errors

Warnings

Install

Imports

Quickstart

This configuration JSON snippet demonstrates how to set up Framelink MCP for Figma within an AI client that supports Model Context Protocol servers, such as Cursor. It specifies the command to run the server and passes the Figma API key.

{  "mcpServers": {    "Framelink MCP for Figma": {      "command": "npx",      "args": ["-y", "figma-developer-mcp", "--figma-api-key=YOUR-KEY", "--stdio"],      "env": { "FIGMA_API_KEY": "YOUR-KEY" }    }  }}

view raw JSON →