ui-design-to-code-mcp
MCP server for ingesting UI screenshots, Figma MCP node JSON, or hybrid Figma-plus-screenshot sources into a cross-platform design-to-code artifact pipeline.
README
UI Design to Code MCP
中文文档 | English
<!-- mcp-name: io.github.Kinglions/ui-design-to-code-mcp -->
MCP server for ingesting UI screenshots, Figma MCP node JSON, or hybrid Figma-plus-screenshot sources into a cross-platform design-to-code artifact pipeline.
The server standardizes source manifests, Figma source datasets, artifact run directories, codegen result registration, visual-review delivery gates, pipeline validation, and cleanup. Semantic IR and code generation remain agent/model-driven steps that write the existing schemas and register outputs through the MCP tools.
Install
Quick install for all supported local clients:
npx -y ui-design-to-code-mcp@latest install \
--clients cursor,claude-code,codex \
--scope project \
--project-dir .
Quick uninstall for all supported local clients:
npx -y ui-design-to-code-mcp@latest uninstall \
--clients cursor,claude-code,codex \
--scope project \
--project-dir .
Cursor project install:
npx -y ui-design-to-code-mcp@latest install \
--client cursor \
--scope project \
--project-dir .
Cursor project uninstall:
npx -y ui-design-to-code-mcp@latest uninstall \
--client cursor \
--scope project \
--project-dir .
Codex user install:
npx -y ui-design-to-code-mcp@latest install --client codex
Codex user uninstall:
npx -y ui-design-to-code-mcp@latest uninstall --client codex
Claude Code project install:
npx -y ui-design-to-code-mcp@latest install \
--client claude-code \
--scope project \
--project-dir .
Claude Code project uninstall:
npx -y ui-design-to-code-mcp@latest uninstall \
--client claude-code \
--scope project \
--project-dir .
Claude Code user install:
claude mcp add-json ui-design-to-code '{"type":"stdio","command":"npx","args":["-y","ui-design-to-code-mcp@latest","serve"]}' --scope user
Claude Code user uninstall:
claude mcp remove ui-design-to-code --scope user
Dynamic update:
npx -y ui-design-to-code-mcp@latest update \
--clients cursor,claude-code,codex \
--channel latest
Beta channel rollout:
npx -y ui-design-to-code-mcp@latest update \
--clients cursor,claude-code,codex \
--channel beta
Pinned install:
npx -y ui-design-to-code-mcp@0.1.0 install \
--clients cursor,claude-code,codex \
--scope project \
--project-dir . \
--package-spec ui-design-to-code-mcp@0.1.0
Run directly:
npx -y ui-design-to-code-mcp@latest serve
Health check:
npx -y ui-design-to-code-mcp@latest doctor
Client Config
Cursor or Claude Code project config:
{
"mcpServers": {
"ui-design-to-code": {
"command": "npx",
"args": ["-y", "ui-design-to-code-mcp@latest", "serve"]
}
}
}
Codex config:
[mcp_servers.ui_design_to_code]
command = "npx"
args = ["-y", "ui-design-to-code-mcp@latest", "serve"]
startup_timeout_sec = 60
Claude Code user-scope install can also use:
claude mcp add-json ui-design-to-code '{"type":"stdio","command":"npx","args":["-y","ui-design-to-code-mcp@latest","serve"]}' --scope user
Triggers and Mode Selection
When an IDE/agent detects a UI screenshot, reference image, Figma design, Figma MCP node dataset, or design-to-code task, route into this workflow. If the user did not explicitly name an execution mode, ask for mode selection before creating a run or artifacts.
Common trigger phrases:
解析这图
分析参考图结构
解析图片结构
图转节点树
转代码
还原页面
复刻这个页面
走设计稿流程
生成页面
Figma to code
解析这个 Figma 节点
根据 Figma MCP 输出继续生成跨平台节点数据
implement this design
convert this screenshot
Required mode prompt:
请选择执行模式:
1. decode-only:只解析设计源和节点树,不生成平台计划或代码。
2. plan-only:生成跨平台节点数据和转换计划,不生成布局 IR 或代码。
3. target-ir:生成目标平台布局 IR,不写代码。
4. codegen:在目标平台生成/修改代码,做常规项目验证和清理;不强制截图验收。
5. codegen-with-auto-review:先生成/修改代码,再自动启动浏览器/模拟器/仿真器截图对比;非素材 UI 还原度必须 >= 90% 才可交付。
6. runtime-review:启动已有实现,在浏览器/模拟器/仿真器中截图并和原图对比,不改代码。
For target-ir, codegen, codegen-with-auto-review, and runtime-review,
also ask for a target platform when missing:
请选择目标平台:ios-uikit / ios-swiftui / web-react / web-next / android-compose / android-view
Figma flow:
- Use Figma MCP first to fetch node JSON. If possible, also fetch the same frame screenshot.
- Pass the Figma MCP output to
ingest_figma_sourceasnodeJsonornodeJsonPath. - Pass the screenshot as
screenshotPathto create a hybrid source. - Continue with the selected shared mode. Do not branch into a separate Figma downstream workflow.
Hybrid Figma input is preferred: Figma nodes provide structure, names, components, text, styles, and layout metadata; screenshots provide pixel truth, visual effects, and later auto-review baselines.
Tools
get_run_modescreate_design_runingest_image_sourceingest_figma_sourcebuild_semantic_irbuild_cross_platform_nodesbuild_target_irrun_codegenrun_codegen_with_auto_reviewvalidate_pipelinecleanup_design_run
Publish
Run the release gate first:
npm run release:check
Recommended public npm release path:
-
Configure npm Trusted Publishing for this package:
node bin/ui-design-to-code-mcp.js configure-npm-trusted-publishing --dry-runThen run the same command without
--dry-run, or configure it innpmjs.com -> Package -> Settings -> Trusted publishing. -
Run the GitHub Actions
Releaseworkflow frommain.
The release workflow uses GitHub Actions OIDC (id-token: write) and npm publish, so it does not need NPM_TOKEN and does not prompt for a local OTP.
npm automatically publishes provenance for Trusted Publishing releases.
Keep npm account 2FA enabled. Do not disable OTP to make local publish easier.
Interactive local npm publish remains a first-package or emergency fallback
only, and npm may require a one-time OTP for that fallback.
Official MCP Registry:
mcp-publisher login github-oidc
mcp-publisher publish
For public Registry publishing, package.json#mcpName must match
server.json#name, and the npm package must be published first. The GitHub
Actions release workflow uses OIDC, so no long-lived MCP_REGISTRY_TOKEN is
required.
Enterprise internal release:
npm publish --registry https://npm.your-company.internal
npx -y ui-design-to-code-mcp@latest install --clients cursor,claude-code,codex
Use --package-spec ui-design-to-code-mcp@<version> for pinned stable rollout,
or @latest for dynamic update on next MCP server restart.
For the full secure release and rollback policy, see RELEASE.md and SECURITY.md.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.