plugins marketplace
← All plugins

figma-mcp-express

v2.8.1

Compact Figma MCP with validated batch ops, multi-channel routing, library automation, and design skills.

CodexClaude Code4 skills1 MCP serverstdio

by sunhome243MIT4updated 3 days ago

Source

git clone https://github.com/sunhome243/figma-mcp-express

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

figma-mcp-express/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/figma-design-md/SKILL.md
├── skills/figma-design-patterns/SKILL.md
├── skills/figma-mcp-express/SKILL.md
├── skills/figma-prototype/SKILL.md
└── .mcp.json

Skills4

figma-design-mdskills/figma-design-md/SKILL.md

Use when extracting DESIGN.md from a Figma file, including tokens, styles, components, rationale, and optional Tailwind or DTCG exports.

figma-design-patternsskills/figma-design-patterns/SKILL.md

Use when designing, editing, or reviewing Figma UI layout craft for auto layout, components, spacing, typography, states, dark mode, or handoff.

figma-mcp-expressskills/figma-mcp-express/SKILL.md

Use when any figma-mcp-express MCP tool is needed for Figma reads, writes, batch ops, screenshots, libraries, tokens, prototypes, or multi-file/channel work.

figma-prototypeskills/figma-prototype/SKILL.md

Use when wiring or auditing Figma prototypes, including clicks, navigation, overlays, transitions, flow starts, scroll-fixed chrome, reaction maps, or inferred flows from static frames. Companion domain skill for figma-mcp-express prototype work.

MCP servers1

figma-mcp-expressstdio
command
npx
args
-y figma-mcp-express --port 1994

Manifests2

.codex-plugin/plugin.json
{
  "name": "figma-mcp-express",
  "version": "2.8.1",
  "description": "Compact Figma MCP with validated batch ops, multi-channel routing, library automation, and design skills.",
  "author": {
    "name": "sunhome243"
  },
  "license": "MIT",
  "skills": "./skills/",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "Figma MCP Express",
    "shortDescription": "Figma MCP with batch ops, multi-channel routing, and design skills.",
    "longDescription": "Figma MCP Express lets coding agents inspect and edit live Figma Desktop files through compact MCP tools, validated batch operations, multi-channel routing, lifecycle hooks, and bundled design skills.",
    "defaultPrompt": "Use Figma MCP Express to inspect the connected Figma file, summarize the current page, and propose the next safe design automation step.",
    "developerName": "sunhome243",
    "category": "Design",
    "capabilities": [
      "Read",
      "Write"
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "figma-mcp-express",
  "displayName": "Figma MCP Express",
  "version": "2.8.1",
  "description": "Compact Figma MCP with validated batch ops, multi-channel routing, library automation, and design skills.",
  "author": {
    "name": "sunhome243"
  },
  "license": "MIT",
  "skills": "./skills/",
  "mcpServers": "./.mcp.json"
}