npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/oo-figma-mcp-write-server

v0.39.0

Published

MCP server for Figma with write access via Plugin API

Downloads

12

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 [email protected]: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.