Framelink MCP for Figma Give your coding agent access to your Figma data. Implement designs in any framework in one-shot. Give Cursor and other AI-powered coding tools access to your Figma files with this Model Context Protocol server. When Cursor has access to Figma design data, it's way better at one-shotting designs accurately than alternative approaches like pasting screenshots. See quickstart
Add this skill
npx mdskills install GLips/figma-context-mcpWell-documented MCP server that fetches and simplifies Figma design data for accurate one-shot UI implementation
1<a href="https://www.framelink.ai/?utm_source=github&utm_medium=referral&utm_campaign=readme" target="_blank" rel="noopener">2 <picture>3 <source media="(prefers-color-scheme: dark)" srcset="https://www.framelink.ai/github/HeaderDark.png" />4 <img alt="Framelink" src="https://www.framelink.ai/github/HeaderLight.png" />5 </picture>6</a>78<div align="center">9 <h1>Framelink MCP for Figma</h1>10 <h3>Give your coding agent access to your Figma data.<br/>Implement designs in any framework in one-shot.</h3>11 <a href="https://npmcharts.com/compare/figma-developer-mcp?interval=30">12 <img alt="weekly downloads" src="https://img.shields.io/npm/dm/figma-developer-mcp.svg">13 </a>14 <a href="https://github.com/GLips/Figma-Context-MCP/blob/main/LICENSE">15 <img alt="MIT License" src="https://img.shields.io/github/license/GLips/Figma-Context-MCP" />16 </a>17 <a href="https://framelink.ai/discord">18 <img alt="Discord" src="https://img.shields.io/discord/1352337336913887343?color=7389D8&label&logo=discord&logoColor=ffffff" />19 </a>20 <br />21 <a href="https://twitter.com/glipsman">22 <img alt="Twitter" src="https://img.shields.io/twitter/url?url=https%3A%2F%2Fx.com%2Fglipsman&label=%40glipsman" />23 </a>24</div>2526<br/>2728Give [Cursor](https://cursor.sh/) and other AI-powered coding tools access to your Figma files with this [Model Context Protocol](https://modelcontextprotocol.io/introduction) server.2930When Cursor has access to Figma design data, it's **way** better at one-shotting designs accurately than alternative approaches like pasting screenshots.3132<h3><a href="https://www.framelink.ai/docs/quickstart?utm_source=github&utm_medium=referral&utm_campaign=readme">See quickstart instructions →</a></h3>3334## Demo3536[Watch a demo of building a UI in Cursor with Figma design data](https://youtu.be/6G9yb-LrEqg)3738[](https://youtu.be/6G9yb-LrEqg)3940## How it works41421. Open your IDE's chat (e.g. agent mode in Cursor).432. Paste a link to a Figma file, frame, or group.443. Ask Cursor to do something with the Figma file—e.g. implement the design.454. Cursor will fetch the relevant metadata from Figma and use it to write your code.4647This MCP server is specifically designed for use with Cursor. Before responding with context from the [Figma API](https://www.figma.com/developers/api), it simplifies and translates the response so only the most relevant layout and styling information is provided to the model.4849Reducing the amount of context provided to the model helps make the AI more accurate and the responses more relevant.5051## Getting Started5253Many code editors and other AI clients use a configuration file to manage MCP servers.5455The `figma-developer-mcp` server can be configured by adding the following to your configuration file.5657> NOTE: You will need to create a Figma access token to use this server. Instructions on how to create a Figma API access token can be found [here](https://help.figma.com/hc/en-us/articles/8085703771159-Manage-personal-access-tokens).5859### MacOS / Linux6061```json62{63 "mcpServers": {64 "Framelink MCP for Figma": {65 "command": "npx",66 "args": ["-y", "figma-developer-mcp", "--figma-api-key=YOUR-KEY", "--stdio"]67 }68 }69}70```7172### Windows7374```json75{76 "mcpServers": {77 "Framelink MCP for Figma": {78 "command": "cmd",79 "args": ["/c", "npx", "-y", "figma-developer-mcp", "--figma-api-key=YOUR-KEY", "--stdio"]80 }81 }82}83```8485Or you can set `FIGMA_API_KEY` and `PORT` in the `env` field.8687If you need more information on how to configure the Framelink MCP for Figma, see the [Framelink docs](https://www.framelink.ai/docs/quickstart?utm_source=github&utm_medium=referral&utm_campaign=readme).8889## Star History9091<a href="https://star-history.com/#GLips/Figma-Context-MCP"><img src="https://api.star-history.com/svg?repos=GLips/Figma-Context-MCP&type=Date" alt="Star History Chart" width="600" /></a>9293## Learn More9495The Framelink MCP for Figma is simple but powerful. Get the most out of it by learning more at the [Framelink](https://framelink.ai?utm_source=github&utm_medium=referral&utm_campaign=readme) site.96
Full transparency — inspect the skill content before installing.