Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Figma Agent

FreeNot checked

Connects AI agents to Figma through a local WebSocket bridge, enabling read/write access to open Figma files, node manipulation, and AI-assisted rename/group fe

GitHubEmbed

About

Connects AI agents to Figma through a local WebSocket bridge, enabling read/write access to open Figma files, node manipulation, and AI-assisted rename/group features.

README

简体中文 | English

CI Docs npm npm downloads GitHub release Pack MCP Pack Plugin License: MIT Node.js

Cursor Claude Code Codex Qoder CodeBuddy Trae

开源 Figma Desktop 插件 + 本地 MCP 桥:让 AI 编程 Agent 读写当前打开的设计稿,无需经 Figma REST API 上传画布。

已适配 Cursor · Claude Code · Codex · Qoder · CodeBuddy · Trae(以及其他支持 stdio MCP 的宿主)。

Figma Desktop 中已连接 MCP Bridge 的插件界面

flowchart LR
  Agent[AI_Agent] -->|stdio_MCP| McpProc[figma_agent_mcp]
  McpProc -->|Election| Role{Leader_or_Follower}
  Role -->|WS_MsgPack| PluginUI[Plugin_UI]
  PluginUI -->|postMessage| PluginMain[Plugin_main]
  PluginMain --> FigmaAPI[Figma_Plugin_API]

深入阅读:文档站 · 架构说明 · 截图图库 · 中文文档索引 · English README

支持的编辑器

figma-agent-mcp 是标准 stdio MCP 服务,可接入你正在用的 AI 编辑器:

编辑器 / IDE 接入入口 配置方式
Cursor Settings → MCP,或 ~/.cursor/mcp.json JSON mcpServers
Claude Code claude mcp add.mcp.json JSON / CLI
Codex(OpenAI) codex mcp add~/.codex/config.toml TOML / CLI
Qoder 设置 → MCP → 添加 JSON mcpServers
CodeBuddy 设置 → MCP → Add MCP JSON mcpServers
Trae 设置 → MCP,或 .trae/mcp.json JSON mcpServers

完整复制粘贴配置:接入 AI Agent · English guide

其他兼容 MCP 的客户端同样适用:用 stdio 运行 npx -y figma-agent-mcp 即可。

为什么需要它

需求 本项目提供
Agent ↔ 实时画布 37 个 MCP 工具(读 / 写 / 截图 / Motion)
本地隐私 桥接流量走 localhost(默认端口 1998
多 Agent 窗口 Leader / Follower 选举 — 共用一条 WS 桥
设计师工作流 可选 AI 重命名 / 分组、3× 切图、中英 UI

包说明

分发方式 说明
figma-agent-mcp npm / GitHub Packages Stdio MCP + HTTP/WS 桥
figma-agent-plugin GitHub Releases ZIP Figma 插件(桥客户端、AI、切图)

请保持 MCP 与插件为同一版本(见 npm / Releases)。

功能特性

  • 多编辑器 MCP — Cursor、Claude Code、Codex、Qoder、CodeBuddy、Trae(接入指南
  • 37 个 MCP 工具 — 文档/选区/节点读写、填充、文本、Auto Layout、创建/分组/删除、Motion 等(目录
  • MessagePack 桥 — 二进制 WS + Follower RPC;截图在链路上为原始 PNG 字节
  • save_screenshots — TinyPNG 风格 PNG 压缩;scale=3 与插件切图一致
  • 插件内 AI — 视觉重命名与嵌套分组(OpenAI 兼容 API)(说明
  • 切图导出 UI — 1× 预览、3× PNG / ZIP(说明
  • i18n — 插件界面中文 / English

快速开始

1. 安装插件

Releases 下载 figma-agent-plugin-v*.zip,解压后在 Figma Desktop:

Plugins → Development → Import plugin from manifest… → 选择 manifest.json → 运行 Figma Agent Kit

状态显示绿色 MCP Bridge 已连接 表示插件可与本地 MCP 通信:

完整面板 Mini 模式
插件界面 Mini 模式

2. 接入你的编辑器(MCP)

先在 支持的编辑器 选中你的工具,再按对应章节配置:

docs/zh/agent-setup.md · English

Cursor 快速示例~/.cursor/mcp.json

{
  "mcpServers": {
    "figma-agent-mcp": {
      "command": "npx",
      "args": ["-y", "figma-agent-mcp"]
    }
  }
}

Cursor mcp.json

重启 MCP,打开文件并运行插件。在 Cursor → MCP 设置中应看到 figma-agent-mcp37 tools enabled

Cursor MCP 工具列表

然后让 Agent 调用 list_filesget_selection

3. 从源码构建

git clone https://github.com/ChinaCarlos/figma-agent-kit.git
cd figma-agent-kit
pnpm install
pnpm build:all
# 导入 packages/figma-agent-plugin/manifest.json
# pnpm start:mcp   # 可选本地启动

完整步骤见 上手指南

文档索引

在线文档(Rspress / GitHub Pages,中英切换):https://chinacarlos.github.io/figma-agent-kit/

本地预览:pnpm install && pnpm dev:docs

文档 说明
上手指南 安装、配置、冒烟测试
接入 AI Agent Cursor / Claude Code / Codex / Qoder / CodeBuddy / Trae
截图图库 插件 + Cursor 界面截图
架构说明 模块、技术栈、流程图
桥接协议 WS / HTTP / MsgPack
MCP 工具 工具参考
AI 功能 重命名与分组
导出切图 插件与 MCP 导出
常见问题 排障
MCP 发版 / 插件发版 发布流程
中文文档索引 docs/zh/ 完整目录
English README · English docs 英文入口与文档索引

安全与隐私

  • MCP 桥工具仅通过本地插件访问 Figma,不会为 MCP 上传整份文档。
  • 可选 AI 重命名/分组会把截图 + 图层元数据发往你配置的 API;密钥保存在 Figma clientStorage
  • 漏洞披露见 SECURITY.md

参与贡献

CONTRIBUTING.mdCode of Conduct

pnpm install
pnpm build:all
pnpm sync:bridge   # 修改 bridge.config.json 后

许可证

MIT

致谢

灵感来自社区中各类本地 Figma ↔ Agent 桥接实践,面向 Desktop + MCP 优先工作流打造。

Star History

如果本项目对你有帮助,欢迎点个 Star 支持一下 ⭐

Star History Chart

from github.com/ChinaCarlos/figma-agent-kit

Installing Figma Agent

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/ChinaCarlos/figma-agent-kit

FAQ

Is Figma Agent MCP free?

Yes, Figma Agent MCP is free — one-click install via Unyly at no cost.

Does Figma Agent need an API key?

No, Figma Agent runs without API keys or environment variables.

Is Figma Agent hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Figma Agent in Claude Desktop, Claude Code or Cursor?

Open Figma Agent on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

LibreOffice Tools

Enables AI agents to read, write, and edit Office documents via LibreOffice with token-efficient design. Supports multiple formats including DOCX, XLSX, PPTX, a

passerbyflutterby passerbyflutter

dannote/figma-use

Full Figma control: create shapes, text, components, set styles, auto-layout, variables, export. 80+ tools.

dannoteby dannote

Logo.dev

Search and retrieve company logos by brand or domain. Customize size, format, and theme to match your design needs. Accelerate design, prototyping, and content

NOVA-3951by NOVA-3951

Design Inspiration Server

Searches top design platforms like Dribbble and Behance to provide UI inspiration, color palettes, and layout patterns via the Serper API. It allows users to re

YonasValentinby YonasValentin

PIX4Dmatic

Enables GUI automation for controlling PIX4Dmatic on Windows through MCP. Supports launching, focusing, capturing screenshots, sending hotkeys, clicking UI elem

jangjo123by jangjo123

Figma

Extract design specs and assets

Figmaby Figma

mcp-dockmaster

An Open-Sourced UI to install and manage MCP servers for Windows, Linux and macOS.

by Community

ariekogan/ateam-mcp

Build, validate, and deploy multi-agent AI solutions on the ADAS platform. Design skills with tools, manage solution lifecycle, and connect from any AI environm

ariekoganby ariekogan

thinkchainai/mcpbundles

MCP Bundles: Create custom bundles of tools and connect providers with OAuth or API keys. Use one MCP server across thousands of integrations, with programmatic

thinkchainaiby thinkchainai

arikusi/nakkas

MCP server that turns AI into an SVG artist. One rendering engine with JSON config, AI controls all design parameters. CSS @keyframes + SMIL animations, 16+ ele

arikusiby arikusi

Compare Figma Agent with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All design MCPs