Figma Design Integration
STDIOMCP server connecting to Figma API for AI tools to access designs.
MCP server connecting to Figma API for AI tools to access designs.
A Model Context Protocol (MCP) server that connects to Figma's API, allowing AI tools and LLMs to access and work with your Figma designs.
Clone the repository:
git clone https://github.com/yourusername/figma-mcp-server.git cd figma-mcp-server
Install dependencies:
npm install
Create a .env
file in the project root:
FIGMA_API_TOKEN=your_figma_personal_access_token
API_KEY=your_secure_api_key
TRANSPORT_TYPE=stdio
Build the server:
npm run build
Start the server:
npm start
Open or create the Claude for Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{ "mcpServers": { "figma": { "command": "node", "args": ["/absolute/path/to/figma-mcp-server/build/index.js"], "env": { "FIGMA_API_TOKEN": "your_figma_personal_access_token", "TRANSPORT_TYPE": "stdio" } } } }
Restart Claude for Desktop
Create or edit Cursor's MCP configuration file:
~/Library/Application Support/Cursor/mcp.json
%APPDATA%\Cursor\mcp.json
{ "mcpServers": { "figma-mcp": { "url": "http://localhost:3000/sse", "env": { "API_KEY": "your_secure_api_key" } } } }
Create a .cursor
directory in your project root:
mkdir -p .cursor
Create an mcp.json
file inside that directory:
{ "mcpServers": { "figma-mcp": { "url": "http://localhost:3000/sse", "env": { "API_KEY": "your_secure_api_key" } } } }
Tool | Description |
---|---|
get-file-info | Get basic information about a Figma file |
get-nodes | Get specific nodes from a Figma file |
get-components | Get component information from a Figma file |
get-styles | Get style information from a Figma file |
get-comments | Get comments from a Figma file |
search-file | Search for elements in a Figma file by type, name, etc. |
extract-text | Extract all text elements from a Figma file |
analyze-design-system
- Analyze design system components and styles for consistencyextract-ui-copy
- Extract and organize all UI copy from designsgenerate-dev-handoff
- Generate development handoff documentation based on designsUsing with Claude:
Can you analyze the design system in my Figma file with key abc123? Look for consistency in color usage and typography.
Using with Cursor:
Generate React components for the buttons from my Figma file with key abc123, using tailwind CSS.
Variable | Description | Default |
---|---|---|
FIGMA_API_TOKEN | Your Figma Personal Access Token | (Required) |
API_KEY | Security key for API authentication | (Required) |
TRANSPORT_TYPE | Transport method (stdio or sse ) | stdio |
PORT | Port for SSE transport | 3000 |
This MCP server:
Contributions are welcome! Please feel free to submit a Pull Request.