AI Skill Hub 强烈推荐:设计系统提取 是一款优质的MCP工具。已获得 1.9k 颗 GitHub Star,AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
设计系统提取 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
设计系统提取 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/dembrandt/dembrandt
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"------": {
"command": "npx",
"args": ["-y", "dembrandt"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 设计系统提取 执行以下任务... Claude: [自动调用 设计系统提取 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"______": {
"command": "npx",
"args": ["-y", "dembrandt"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Extract any website's design system in one command. Enforce it in CI.
Logo, colors, typography, spacing, borders, shadows, motion, components. W3C design tokens in seconds.

npm install -g dembrandt
dembrandt install-browser # one-time: fetches the matching Chromium
dembrandt dembrandt.com
The browser step is required. dembrandt drives Chromium through playwright-core, which ships no browser binaries, so a fresh install has nothing to launch until you run it. Skipping it fails with browser engine not available.
Or use npx without installing: npx dembrandt dembrandt.com. The browser step applies here too: run npx dembrandt install-browser first. Browsers land in a shared Playwright cache, so either route only needs it once.
Requires Node.js 18+
Use Dembrandt as a tool in Claude Code, Cursor, Windsurf, or any MCP-compatible client. Ask your agent to "extract the color palette from dembrandt.com" and it calls Dembrandt automatically.
claude mcp add --transport stdio dembrandt -- npx -y --package dembrandt dembrandt-mcp
Or add to your project's .mcp.json:
{
"mcpServers": {
"dembrandt": {
"command": "npx",
"args": ["-y", "--package", "dembrandt", "dembrandt-mcp"]
}
}
}
Available tools include get_design_tokens, get_color_palette, get_typography, get_component_styles, get_surfaces, get_spacing, and get_brand_identity, plus pure analysis tools (compute_drift, get_findings, export_dtcg, generate_design_md, render_report) and job-control tools.
Extraction tools accept slow, mobile, darkMode, wcag, cookie and header (for authenticated pages), userAgent, and noSandbox (Docker and most CI containers). Set pages above 1 to crawl and merge several pages, which produces a markedly stronger token set than one page; paths names them explicitly and sitemap discovers them from sitemap.xml.
Extraction returns a job_id. Poll it with get_job_status, then hand that same id to the pure tools instead of passing the extraction back as an argument:
get_design_tokens(url: "example.com", pages: 5) -> job_id
get_job_status(job_id) -> tokens
get_findings(job_id) -> contrast and consistency issues
export_dtcg(job_id) -> W3C design tokens
Pair with dembrandt-skills to give your agent UX intelligence on top of extracted tokens: hierarchy, accessibility, interaction states, and a full 6-stage design pipeline orchestrator.
npx skills add dembrandt/dembrandt-skills
Dembrandt 是一个高效的设计系统提取工具,能够在几秒钟内自动从目标网站中提取设计令牌(Design Tokens),包括 Logo、颜色、字体、间距、圆角及阴影等关键视觉元素。它旨在帮助开发者和设计师快速复现网页的设计规范,实现从视觉到代码的无缝转换。
您可以通过 npm 全局安装 Dembrandt:执行 `npm install -g dembrandt`。此外,也可以直接使用 npx 命令无需安装即可运行:`npx dembrandt <url>`。请确保您的开发环境已安装 Node.js 18 或更高版本。在 CI/CD 或无头(headless)环境中运行时,建议添加 `--no-sandbox` 参数以确保稳定性。
Dembrandt 支持多种命令行模式。基础用法为 `dembrandt <url>`,直接在终端显示提取结果;使用 `--json-only` 可仅输出原始 JSON 数据;若需将结果保存至本地文件,请添加 `--save-output` 参数。特别推荐使用 `--dtcg` 模式,它会按照 W3C Design Tokens (DTCG) 标准导出 `.tokens.json` 文件,方便与 Style Dictionary 等工具集成。此外,您还可以通过 `--dark-mode` 专门提取深色模式下的设计数据。
Dembrandt 导出的 DTCG 格式遵循行业标准 JSON Schema,可直接被 Style Dictionary 等转换库消费,用于生成 Tailwind CSS 或其他样式配置。对于需要对接设计工具的用户,可以通过 `--dtcg --save-output` 模式生成可供 Tokens Studio 或 Figma 使用的配置文件。生成的 Markdown 报告(DESIGN.md)会包含详细的 YAML 前置数据,确保设计上下文的可读性。
Dembrandt 提供灵活的页面发现机制。默认情况下,它会通过 DOM 链接进行抓取,但您也可以通过添加 `--sitemap` 参数,指定使用 `sitemap.xml` 进行页面发现,从而提高在复杂站点中提取数据的准确性与效率。
Dembrandt 已深度集成 AI Agent 工作流。通过 MCP(Model Context Protocol),您可以将 Dembrandt 作为工具直接接入 Claude Code、Cursor、Windsurf 或任何兼容 MCP 的客户端中。只需向 AI Agent 下达指令(如“提取 example.com 的配色方案”),Agent 就会自动调用 Dembrandt 完成任务,实现从自然语言指令到设计数据提取的自动化闭环。
高效的设计系统提取工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,设计系统提取 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | dembrandt |
| 原始描述 | 开源MCP工具:Extract any website’s design system into tokens in seconds: logo, colors, typogr。⭐1.9k · JavaScript |
| Topics | mcp设计系统cssjavascript |
| GitHub | https://github.com/dembrandt/dembrandt |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-05-31 · 更新时间:2026-05-31 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端