Figma MCP Server
Give Cursorβ 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.
Get started quickly, see Configuration for more details:
npx figma-developer-mcp --figma-api-key=<your-figma-api-key>
Demo Video
Watch a demo of building a UI in Cursor with Figma design dataβ
How it works
- Open Cursorβs composer in agent mode.
- Paste a link to a Figma file, frame, or group.
- Ask Cursor to do something with the Figma fileβe.g. implement a design.
- Cursor will fetch the relevant metadata from Figma and use it to write your code.
This MCP server is specifically designed for use with Cursor. Before responding with context from the Figma APIβ, it simplifies and translates the response so only the most relevant layout and styling information is provided to the model.
Reducing the amount of context provided to the model helps make the AI more accurate and the responses more relevant.
Installation
Running the server quickly with NPM
You can run the server quickly without installing or building the repo using NPM:
npx figma-developer-mcp --figma-api-key=<your-figma-api-key>
# or
pnpx figma-developer-mcp --figma-api-key=<your-figma-api-key>
# or
yarn dlx figma-developer-mcp --figma-api-key=<your-figma-api-key>
# or
bunx figma-developer-mcp --figma-api-key=<your-figma-api-key>
Running the server from local source
- Clone the repositoryβ
- Install dependencies with
pnpm install
- Copy
.env.example
to.env
and fill in your Figma API access tokenβ. Only read access is required. - Run the server with
pnpm run dev
, along with any of the flags from the Command-line Arguments section.
Configuration
The server can be configured using either environment variables (via .env
file) or command-line arguments. Command-line arguments take precedence over environment variables.
Environment Variables
FIGMA_API_KEY
: Your Figma API access token (required)PORT
: The port to run the server on (default: 3333)
Command-line Arguments
--version
: Show version number--figma-api-key
: Your Figma API access token--port
: The port to run the server on--stdio
: Run the server in command mode, instead of default HTTP/SSE--help
: Show help menu
Connecting to Cursor
Start the server
> npx figma-developer-mcp --figma-api-key=<your-figma-api-key>
# Initializing Figma MCP Server in HTTP mode on port 3333...
# HTTP server listening on port 3333
# SSE endpoint available at http://localhost:3333/sse
# Message endpoint available at http://localhost:3333/messages
Connect Cursor to the MCP server
Once the server is running, connect Cursor to the MCP serverβ in Cursorβs settings, under the features tab.
After the server has been connected, you can confirm Cursorβs has a valid connection before getting started. If you get a green dot and the tools show up, youβre good to go!
Start using Composer with your Figma designs
Once the MCP server is connected, you can start using the tools in Cursorβs composer, as long as the composer is in agent mode.
Dropping a link to a Figma file in the composer and asking Cursor to do something with it should automatically trigger the get_file
tool.
Most Figma files end up being huge, so youβll probably want to link to a specific frame or group within the file. With a single element selected, you can hit CMD + L
to copy the link to the element. You can also find it in the context menu:
Once you have a link to a specific element, you can drop it in the composer and ask Cursor to do something with it.
Inspect Responses
To inspect responses from the MCP server more easily, you can run the inspect
command, which launches the @modelcontextprotocol/inspector
web UI for triggering tool calls and reviewing responses:
pnpm inspect
# > figma-mcp@0.1.0 inspect
# > pnpx @modelcontextprotocol/inspector
#
# Starting MCP inspector...
# Proxy server listening on port 3333
#
# π MCP Inspector is up and running at http://localhost:5173 π
Available Tools
The server provides the following MCP tools:
get_file
Fetches information about a Figma file.
Parameters:
fileKey
(string): The key of the Figma file to fetchdepth
(number, optional): How many levels deep to traverse the node tree
get_node
Fetches information about a specific node within a Figma file.
Parameters:
fileKey
(string): The key of the Figma file containing the nodenodeId
(string): The ID of the node to fetch