BACK TO DIRECTORY
mcpintermediate
Figma
Connects Claude Code to your Figma workspace for design-to-code workflows. Read design files, inspect component properties, extract color palettes and spacing values, and access auto-layout information. Enables accurate translation of Figma designs to React/Tailwind components by providing the exact design specifications directly to Claude.
1.1k STARS
16.8k DOWNLOADS
figma
figmadesignuitokenscomponents
INSTALL COMMAND
npx @anthropic-ai/claude-code mcp add figma -- npx -y @anthropic-ai/mcp-server-figmaCONFIGURATION
json
1{2 "mcpServers": {3 "figma": {4 "command": "npx",5 "args": [6 "-y",7 "@anthropic-ai/mcp-server-figma"8 ],9 "env": {10 "FIGMA_ACCESS_TOKEN": "<your-figma-access-token>"11 }12 }13 }14}1516// Setup steps:17// 1. Go to Figma > Settings > Personal access tokens18// 2. Generate a new token with file:read scope19// 3. Set it as FIGMA_ACCESS_TOKEN20//21// Available tools:22// - get_file: Get a Figma file's structure and metadata23// - get_node: Inspect a specific node's properties24// - get_components: List all components in a file25// - get_styles: Extract color, text, and effect styles26// - get_images: Export nodes as PNG/SVG/PDF27// - get_comments: Read file comments28//29// Common workflows:30// - Design-to-code: Inspect a Figma frame, generate React component31// - Token extraction: Pull colors, fonts, spacing into tailwind config32// - Asset export: Export icons and images for the project33// - Design review: Compare implementation against Figma specs