figma-mcp-write-server

figma-mcp-write-server

An MCP server that provides write access to Figma through the Plugin API, enabling AI agents to create, modify, and manage Figma designs programmatically.

Category
Visit Server

README

Figma MCP Write Server

A Model Context Protocol (MCP) server that provides write access to Figma through the Plugin API, enabling AI agents to create, modify, and manage Figma designs programmatically.

Designed with ❤️ by a human. Coded with ✨ by AI agents (Claude and Gemini)

[!WARNING] This project is in pre-release development mode (Semantic Versioning < 1.0.0). All tools, interfaces and definitions are subject to change.

🚀 Overview

Since Figma's REST API is read-only, this server uses the Plugin API to enable write operations, allowing AI agents to act as autonomous graphic designers.

Feature REST API MCP Plugin API MCP (This Project)
Read Operations ✅ Full access ✅ Full access
Write Operations ❌ Not supported ✅ Full support
Real-time Updates ❌ Polling only ✅ Live connection
Rate Limits Yes (REST API limits) No (direct plugin access)
Setup Complexity Simple Moderate (requires plugin)
Offline Usage ✅ Works offline ❌ Requires active Figma session

📋 Available Tools

Rather than a thin wrapper around the Figma API, tools are organized for intuitive use and discovery. Humans rely on the UI and good UX, but MCP tools have to be designed from the Agent's perspective.

Tool Categories

  • Core Design: figma_nodes, figma_text, figma_fills, figma_strokes, figma_effects
  • Layout & Positioning: figma_auto_layout, figma_constraints, figma_alignment, figma_hierarchy
  • Design System: figma_styles, figma_components, figma_instances, figma_variables, figma_fonts
  • Advanced Operations: figma_boolean_operations, figma_vectors
  • Developer Tools: figma_dev_resources, figma_annotations, figma_measurements, figma_exports
  • System: figma_plugin_status, figma_pages, figma_selection, figma_images

These 24 tools provide complete access to Figma's capabilities - from creating basic shapes and text to building complex design systems with components and variables. Advanced features include boolean operations for combining shapes, vector manipulation for custom paths, and comprehensive export options for developer handoff.

See the Complete Guide for detailed documentation of each tool.

⚡ Quick Start

System Requirements

  • Operating System - Windows 10+, macOS 10.14+, or Linux (Ubuntu 18.04+)
  • Active Figma Session - Server requires an open Figma file to operate
  • Network Connection - For font database sync and plugin communication

1. 📋 Install pre-requisites

  • Node.js 22.x - Download from nodejs.org
  • npm - Comes with Node.js (verify with npm --version)
  • Figma Desktop - Required for Plugin API access (browser version has limitations)
  • Git - For cloning the repository
node --version  # Should show v22.x.x
npm --version   # Should show 8.0.0 or higher
git --version   # Should show 2.0.0 or higher

Note: Node.js v22.x is specifically required due to better-sqlite3 pre-built binary compatibility. Other Node versions may require manual compilation which can fail on some systems.

2. Clone and Build Project

git clone git@github.com:oO/figma-mcp-write-server.git
cd figma-mcp-write-server
npm install
npm run build

3. Configure Claude Desktop

Add this configuration to your Claude Desktop MCP settings file:

Configuration:

{
  "mcpServers": {
    "figma-mcp-write-server": {
      "command": "node",
      "args": ["/path/to/figma-mcp-write-server/dist/index.js"],
      "env": {
        "NODE_ENV": "production"
      }
    }
  }
}

4. Install the Figma Plugin

  1. Open Figma Desktop
  2. Go to PluginsDevelopmentImport plugin from manifest
  3. Select figma-plugin/manifest.json from the project directory
  4. Run the plugin from PluginsDevelopmentFigma MCP Write Server

Optional: Customize server settings by copying config.example.yaml to your platform-specific config directory and editing as needed. See Configuration Guide for details.

🎯 Start Creating

Open Claude Desktop and use any of the 24 available tools to design programmatically

Layout & Structure

  • "Create a header frame with title and subtitle"
  • "Make this frame arrange its children vertically with 16px spacing"
  • "Center text within frame" or "Align circle's center to rectangle's left edge"
  • "Add a 2px red stroke to this rectangle with rounded end caps"

Design Systems

  • "Create color palette and apply styles consistently"
  • "Build button variants with different colors and styles"
  • "Create design tokens for colors and spacing, bind to components"

Boolean Operations

  • "Combine shapes with union, create cutouts with subtract"
  • "Create complex logos by intersecting and excluding shapes"
  • "Build icon libraries with consistent stroke-to-fill conversion"

Vector Operations

  • "Create and edit vector shapes with vertices, paths, and bezier curves"
  • "Convert shapes, strokes, and text to editable vector paths"
  • "Extract or explode vector elements into separate shapes"
  • "Flatten multiple vectors into single optimized paths"

Developer Handoff

  • "Add annotations and measurements, generate CSS for developers"
  • "Export selected components as PNG files"
  • "Create design specifications with spacing measurements"

Images

  • "List all images used in this page with usage information"
  • "Create image node from https://example.com/photo.jpg"
  • "Add image from local file ~/Desktop/logo.png at position 100,50"
  • "Create image node from existing hash abc123 at position 150,200"
  • "Export image data to Downloads folder in PNG format"

🚧 Current Limitations

  • Active Session Required - Requires open Figma Desktop application with active file
  • Manual Plugin Setup - Plugin must be manually installed and run for each session
  • Single File Scope - Operations limited to currently open file and selected page
  • Network Dependency - WebSocket connection can be unstable on poor networks
  • Pattern Fill Creation - Pattern fills can be read but not created due to a known Figma Plugin API validation bug
  • Desktop Only - Figma browser version has limited Plugin API access

📚 Documentation

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured