Figma MCP Server
Interacts with Figma file content, dev resources, comments, and webhooks.
Overview
Figma MCP Server is a Model Context Protocol (MCP) server that integrates with Figma's API, enabling users to interact with Figma files, comments, components, and more.
To use the Figma MCP Server, clone the repository, install the dependencies, and configure the server with your Figma access token. You can then utilize various tools to perform operations on Figma files and comments.
- File Operations: Get file information, version history, and components. - Comment Management: List, add, and delete comments in files. - Project & Team Features: List team projects and get project files. - Webhook Management: Create, list, and delete webhooks.
- Automating file operations in Figma projects.
- Managing comments for design feedback.
- Integrating Figma with other tools via webhooks.
Add to your AI client
Use these steps to connect Figma MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"figma-mcp-server-deepsuthar496": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-figma-mcp-server-deepsuthar496"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"figma-mcp-server-deepsuthar496": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-figma-mcp-server-deepsuthar496"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"figma-mcp-server-deepsuthar496": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-figma-mcp-server-deepsuthar496"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"figma-mcp-server-deepsuthar496": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-figma-mcp-server-deepsuthar496"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"figma-mcp-server-deepsuthar496": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-figma-mcp-server-deepsuthar496"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"figma-mcp-server-deepsuthar496": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-figma-mcp-server-deepsuthar496"
]
}
}
}FAQ
Can I use Figma MCP Server for all Figma files?
Yes! It can interact with any Figma file you have access to.
Is there a cost to use Figma MCP Server?
No, it is open-source and free to use.
What programming language is Figma MCP Server written in?
Figma MCP Server is written in JavaScript.