Figma MCP 서버
Figma API에 연결되는 MCP(Model Context Protocol) 서버로, AI 도구와 LLM이 Figma 디자인에 액세스하여 작업할 수 있습니다.
특징
디자인 데이터 추출 : Figma 디자인에서 구성 요소, 스타일 및 텍스트를 추출합니다.
디자인 시스템 분석 : 디자인 시스템의 일관성과 패턴을 분석합니다.
UI 콘텐츠 관리 : 디자인에서 모든 UI 복사본을 추출하고 구성합니다.
개발 핸드오프 : 개발자를 위한 포괄적인 문서 생성
원활한 AI 통합 : Claude, Cursor 및 기타 MCP 호환 클라이언트와 같은 AI 도구에 디자인을 연결합니다.
시작하기
필수 조건
Node.js 16 이상
Figma 개인 액세스 토큰(Figma 계정 설정에서 받으세요)
설치
저장소를 복제합니다.
지엑스피1
종속성 설치:
npm install프로젝트 루트에
.env
파일을 만듭니다.FIGMA_API_TOKEN=your_figma_personal_access_token API_KEY=your_secure_api_key TRANSPORT_TYPE=stdio서버를 빌드하세요:
npm run build서버를 시작합니다:
npm start
클라이언트에 연결
데스크톱용 클로드
Claude for Desktop 구성 파일을 열거나 만듭니다.
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
다음 구성을 추가합니다.
{ "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" } } } }데스크톱용 Claude 재시작
커서
글로벌 구성
커서의 MCP 구성 파일을 생성하거나 편집합니다.
macOS:
~/Library/Application Support/Cursor/mcp.json
윈도우:
%APPDATA%\Cursor\mcp.json
프로젝트별 구성
프로젝트 루트에
.cursor
디렉토리를 만듭니다.mkdir -p .cursor해당 디렉토리 안에
mcp.json
파일을 만듭니다.{ "mcpServers": { "figma-mcp": { "url": "http://localhost:3000/sse", "env": { "API_KEY": "your_secure_api_key" } } } }
사용 가능한 도구
도구 | 설명 |
| Figma 파일에 대한 기본 정보 가져오기 |
| Figma 파일에서 특정 노드 가져오기 |
| Figma 파일에서 구성 요소 정보 가져오기 |
| Figma 파일에서 스타일 정보 가져오기 |
| Figma 파일에서 주석 가져오기 |
| Figma 파일에서 유형, 이름 등을 기준으로 요소를 검색합니다. |
| Figma 파일에서 모든 텍스트 요소 추출 |
사용 가능한 프롬프트
analyze-design-system
- 일관성을 위해 디자인 시스템 구성 요소와 스타일을 분석합니다.extract-ui-copy
- 디자인에서 모든 UI 복사본을 추출하고 정리합니다.generate-dev-handoff
- 설계 기반 개발 핸드오프 문서 생성
사용 예
Claude와 함께 사용:
커서와 함께 사용:
환경 변수
변하기 쉬운 | 설명 | 기본 |
| Figma 개인 액세스 토큰 | (필수의) |
| API 인증을 위한 보안 키 | (필수의) |
| 전송 방법(
또는
) |
|
| SSE 운송 항구 |
|
건축학
이 MCP 서버:
개인 액세스 토큰을 사용하여 Figma API에 연결합니다.
모델 컨텍스트 프로토콜을 따르는 표준화된 인터페이스를 제공합니다.
LLM이 Figma 디자인과 상호 작용하는 데 사용할 수 있는 도구, 리소스 및 프롬프트를 제공합니다.
stdio 전송(로컬 연결)과 SSE 전송(원격 연결)을 모두 지원합니다.
기여하다
기여를 환영합니다! 풀 리퀘스트를 제출해 주세요.
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
AI 도구와 LLM을 Figma 디자인에 연결하여 디자인 데이터를 추출하고, 디자인 시스템을 분석하고, 개발 문서를 생성할 수 있는 모델 컨텍스트 프로토콜 서버입니다.
Related MCP Servers
- AsecurityFlicenseAqualityEnables seamless interaction with Figma via the Model Context Protocol, allowing LLM applications to access, manipulate, and track Figma files, components, and variables.Last updated -107139
- AsecurityFlicenseAqualityA Model Context Protocol server that provides access to Figma API functionality, allowing AI assistants like Claude to interact with Figma files, comments, components, and team resources.Last updated -181793
- AsecurityFlicenseAqualityA Model Context Protocol server that integrates with Figma's API, allowing interaction with Figma files, comments, components, projects, and webhook management.Last updated -5725
- -securityAlicense-qualityA Model Context Protocol server that integrates Figma design files with AI coding tools like Cursor, Windsurf, and Cline, allowing AI tools to access and understand Figma design data for generating more accurate code.Last updated -215MIT License