@spicefactory/figma-design-pipeline
v0.7.3
Published
AI design assistant MCP server: inspect Figma designs, plan changes, extract tokens, sync design systems, and generate code. Includes a high-performance Figma plugin for 30-60x faster writes than use_figma.
Maintainers
Readme
SPFR Figma Design Pipeline
AI design assistant for Figma. Analyze websites, create design systems, design pages and dashboards, sync tokens, and generate production code — all from your terminal.
Works with Claude Code, Codex CLI, and Gemini CLI. Uses the official Figma MCP for full read/write Figma access.
What It Does
"Look at stripe.com and create a design system based on their style"
→ Captures the website, extracts colors, typography, spacing
→ Creates a new Figma file with organized design system
→ Builds color palette, type scale, spacing system, components
→ Everything appears in Figma — ready for your team"Design me an analytics dashboard with sidebar nav, metrics cards, and charts"
→ Creates the page layout in Figma with proper auto-layout
→ Uses your existing design system components
→ Applies consistent spacing, colors, and typography
→ Produces a polished, designer-quality result"Sync the design tokens from Figma to our Tailwind config"
→ Reads current Figma styles and variables
→ Compares against your code tokens
→ Exports as Tailwind config, CSS variables, or JSON"Generate React components from this Figma page"
→ Maps Figma nodes to your codebase components
→ Generates page templates and CMS schemas
→ Exports design tokens in your framework's formatHow It Works
AI Agent (Claude Code / Codex / Gemini)
│
├─ Official Figma MCP ──→ Read & write Figma (OAuth, zero setup)
│
├─ This MCP Server ─────→ Design intelligence (analysis, planning, codegen)
│
└─ Browser Tools ───────→ Website capture & analysisThe official Figma MCP handles Figma reads and file creation via OAuth — no personal access token needed. This MCP server provides design intelligence (inspection, auditing, planning, token sync, code generation) plus a high-performance plugin bridge for writes (figma_execute — 30-60x faster than use_figma).
Quick Start
1. Install (one command)
npx -y -p @spicefactory/figma-design-pipeline spfr-figma-design-pipeline-install --client allThis copies the server bundle, skill, and plugin into ~/.figma-design-pipeline/, registers the MCP server, and installs the design assistant skill for all supported clients.
From source:
git clone https://github.com/spfr/figma-design-pipeline.git
cd figma-design-pipeline
npm install
npm run install:clients2. Try it
Open Claude Code (or Codex/Gemini CLI) and type:
Create a new Figma file called "My Design System" with a color palette
using blue as the primary color and a 4px spacing scaleThe AI will use the official Figma MCP to create the file and build the design system. No token needed for creating and writing to Figma.
More things to try:
Look at https://stripe.com and extract their design language into a new Figma fileAudit the Figma file at https://figma.com/design/ABC123/My-File?node-id=1:2
for naming issues and accessibility problemsExport the design tokens from this Figma file as a Tailwind config3. Optional: REST API tools
All major CLIs support the official Figma MCP via OAuth — no token needed for Figma reads and writes.
If you also want to use this server's REST API analysis tools (structured tree inspection, token extraction, auditing), set:
export FIGMA_ACCESS_TOKEN=figd_your_token_hereGet a token from Figma Settings > Personal access tokens.
Other optional env vars:
export FIGMA_FILE_KEY=... # Default Figma file
export COMPONENT_REGISTRY_DIR=/path/to/registry # Component registry for codegenRelease 0.7.3 (2026-03-31)
- Elevated effects coverage:
set_effectsandcreate_effect_stylenow accept the full Figma shadow/blur payload (blendMode, spread, offset, showShadowOnly and both drop/inner shadows plus layer/background blurs), so plugin batches can reproduce the same elite visual treatments as hand-tuned Figma designs. - Drop-shadow actions now validate because the MCP schema matches Figma’s payload, making it safe to add glow-and-halo styling without schema errors.
MCP Tools
Inspect (read-only, via REST API)
| Tool | Description |
|------|-------------|
| figma_get_tree | Fetch enriched node tree with classifications, layout info. Auto-truncates at 80KB. |
| figma_audit | Structural audit: naming, layout, components, tokens, accessibility. |
| figma_extract_tokens | Extract design tokens (colors, fonts, spacing, radius, shadows) with Tailwind mapping. |
| figma_export_images | Export node renders as images via REST API. |
| figma_find_nodes | Search/filter nodes by name, type, classification, text, or size. |
| figma_get_components | List all components with names, descriptions, and node IDs. |
| figma_get_styles | List all published styles in a file. |
| figma_diff_tokens | Compare Figma styles vs code tokens. Reports drift. |
Plan (analysis, no mutations)
| Tool | Description |
|------|-------------|
| figma_plan_naming | Generate semantic rename plan for generic-named nodes. |
| figma_plan_grouping | Plan semantic frame grouping for scattered elements. |
| figma_plan_layout | Plan auto-layout conversion from absolute positioning. |
| figma_plan_components | Plan component extraction from repeated visual patterns. |
Codegen
| Tool | Description |
|------|-------------|
| figma_map_components | Map Figma nodes to codebase components via signature matching. |
| figma_generate_page | Generate page template from Figma design. |
| figma_generate_schema | Generate CMS schema from Figma structure. |
| figma_export_tokens | Export tokens as Tailwind config, CSS variables, or JSON. |
Plugin (high-performance batch writes)
| Tool | Description |
|------|-------------|
| figma_execute | Batch-execute up to 500 validated actions via the Figma plugin (30-60x faster than use_figma). Falls back to generating use_figma JS when the plugin is not connected. |
| figma_plugin_status | Check if the Figma plugin is connected. |
43 action types including: create_frame, set_fills, set_gradient_fill, set_text_content, create_component, set_child_layout_sizing (responsive FILL/HUG/FIXED), set_constraints, create_variable_collection, create_variable, bind_variable, create_page, switch_page, and more. See figma://actions resource for the full schema.
Writing to Figma
Two paths:
- Plugin connected (recommended):
figma_executesends batched actions to the Figma plugin via WebSocket. 50 operations in ~200ms vs ~50 seconds with individualuse_figmacalls. - Plugin not connected: Call
figma_executeanyway — it returns fallback JavaScript you can pass touse_figma.
Installing the Figma Plugin
If you used the one-line installer:
- In Figma Desktop: Plugins > Development > Import plugin from manifest
- Navigate to
~/.figma-design-pipeline/plugin/manifest.json - Run the plugin
- Confirm the bridge from your CLI with
figma_plugin_status
If you are running from source instead:
- Run
npm run build(builds both server and plugin) - In Figma Desktop: Plugins > Development > Import plugin from manifest
- Navigate to
plugin/dist/manifest.jsonin this repo - Run the plugin and confirm with
figma_plugin_status
Verifying Codex Installation
After install, these should exist:
codex mcp get figma-design-pipeline
ls ~/.codex/skills/figma-design-pipeline
ls ~/.figma-design-pipeline/plugin/manifest.jsonThe Codex MCP entry should point to ~/.figma-design-pipeline/server/index.js, not a temporary ~/.npm/_npx/... path.
Example Workflows
Create a Design System from a Website
1. Browse the website using browser tools
2. Extract colors, fonts, spacing, component patterns
3. create_new_file → new Figma file
4. figma_execute → batch-create color styles, text styles, components
5. figma_audit → verify the resultSync Design Tokens
1. figma_get_styles → read current Figma styles
2. figma_diff_tokens → compare against code tokens
3. figma_export_tokens → export as Tailwind/CSS/JSONClean Up a Design File
1. figma_audit → find naming issues, layout problems
2. figma_plan_naming → generate rename plan
3. figma_plan_layout → plan auto-layout conversion
4. figma_execute → execute the plans (or use_figma with fallback JS)
5. figma_audit → verify improvementsGenerate Code from Figma
1. figma_get_tree → understand the design structure
2. figma_map_components → match to codebase components
3. figma_generate_page → generate page template
4. figma_export_tokens → export tokens in your formatComponent Registry
The codegen tools use a component registry to map Figma nodes to your codebase. Set COMPONENT_REGISTRY_DIR to your project's registry directory.
Manual Config
If you prefer manual setup, use the standalone bundle at dist/index.js:
Claude Code
{
"mcpServers": {
"figma-design-pipeline": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"FIGMA_ACCESS_TOKEN": "$FIGMA_ACCESS_TOKEN"
}
}
}
}Gemini CLI
{
"mcpServers": {
"figma-design-pipeline": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"FIGMA_ACCESS_TOKEN": "$FIGMA_ACCESS_TOKEN"
}
}
}
}Codex CLI
[mcp_servers."figma-design-pipeline"]
command = "node"
args = ["/path/to/dist/index.js"]
env = { FIGMA_ACCESS_TOKEN = "$FIGMA_ACCESS_TOKEN" }
startup_timeout_ms = 30000Development
npm run dev # Start MCP server in dev mode
npm run build # Build server bundle
npm run check # TypeScript type checking
npm test # Run tests
npm run test:watch # Watch modePublishing
See PUBLISHING.md for the release process.
License
MIT
