claude-design-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-design-mcpCreate a design system for a food delivery app"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
claude-design-mcp
An MCP server that drives Claude Design — Anthropic's design-system generator — from agentic coding CLIs (Claude Code, Cursor, etc.). It exposes semantic tools so you can create_design_system, generate, iterate, list_files, read_file, and export without touching a browser.
Unofficial — not affiliated with or endorsed by Anthropic. Claude Design has no public API, so this drives a real Chrome and calls claude.ai's internal endpoints. Expect it to break when the site changes. Point it only at your own account, stay within Anthropic's terms, and use it at your own risk. Your logged-in session is sensitive — see SECURITY.md.
Status: working. ~30 tools implemented (see the table below). Most call Claude Design's internal
OmeletteServiceConnect-RPC API as JSON (via in-pagefetch);generate/iterate/get_statusdrive the chat UI (theChatRPC payload is opaque).
Tools
Create & generate
Tool | Purpose |
| Create a design system. Returns |
| Create a design PROJECT (screens/app), optionally binding design systems. |
| Start generation from the stored brief. Returns once started (~5 min total). |
| Poll: |
| Send a chat message. Non-blocking — returns once started; poll |
| Revise/prompt; optionally target a specific conversation. |
Design-system bindings
Tool | Purpose |
| Bind a (published) design system to a project. |
| Unbind a design system. |
| List bound systems (with names). |
| Pull the latest version of bound system(s). |
Conversations
Tool | Purpose |
| List chats: |
| Start a fresh conversation. |
Files
Tool | Purpose |
| List files ( |
| Read a single file (utf8). |
| Dump all files to |
| Primary handoff. Official capability URL + ready Claude Code command; with |
| Deprecated — local bundle ( |
| Grep files → |
| Direct file edits without chat. |
Publish, listing & management
Tool | Purpose |
| Publish / set default design system. |
| List design systems / all projects. |
| Project housekeeping. |
| Account usage/quota (5-hour & 7-day). |
| Open the project as a Claude Code session → |
Related MCP server: claudecode-mcp
Setup
Prerequisites: Node ≥ 20, pnpm, and a desktop Google Chrome installed. A claude.ai account with Claude Design access.
claude.ai is behind Cloudflare, which blocks Playwright's bundled Chromium (automation fingerprint) with an endless "Just a moment…" loop. The server sidesteps this by attaching to a real Chrome over the Chrome DevTools Protocol (CDP) — a normally-launched Chrome passes Cloudflare cleanly.
git clone https://github.com/e-brokenc0de/claude-design-mcp.git
cd claude-design-mcp
pnpm install
pnpm exec playwright install chromium # only the Node bindings are needed
# Start the real Chrome (dedicated debug profile in .auth/cdp-chrome) and log
# into claude.ai once. The window stays open; the session persists.
pnpm run chrome:cdp
pnpm run buildDev-only:
pnpm run recon:capturetees Claude Design's network/RPC traffic into./recon/so you can re-map the internal API insrc/selectors.tsif the site changes. Not needed for normal use. Captures can contain cookies — they're gitignored; never commit them.
The MCP server attaches to the same Chrome (port 9222 by default). If Chrome
isn't running, the server auto-launches it; if it's not logged in, tools return
NOT_AUTHED — run pnpm run chrome:cdp and log in.
CLI
Every tool is also a terminal command via claude-design. The CLI is a thin MCP
client — it spawns the same server and forwards your arguments, so the commands,
schemas, and output are exactly the server's (add a tool to the server and it shows up
here automatically). Good for automation/CI, quick debugging, and one-off ops without
an agent in the loop.
claude-design --help # list every command (discovered from the server)
claude-design <command> --help # flags for one command
claude-design list-projects --json # data tools print JSON → pipe to jq
claude-design create-design-system --name "Acme" --brief "Calm, editorial, dark-first"
claude-design get-status --project-id <id>Command names accept kebab- or snake_case (
create-design-system==create_design_system).Flags mirror each tool's arguments in kebab-case (
projectId→--project-id); array args repeat (--design-system-ids a --design-system-ids b); booleans are presence flags.--jsonguarantees machine-readable stdout. Exit codes:0ok,1error,2NOT_AUTHED.Same prerequisites as the server: a logged-in Chrome (
claude-design chrome), and generation is async — kick offgenerate/iterate, thenclaude-design watch --project <id>.
The dev scripts are folded in as subcommands too: claude-design chrome (auth),
claude-design scaffold (export → packages/ui), claude-design watch (block until a
generation settles). They're equivalent to the matching pnpm run scripts.
Run it without installing globally via npx claude-design …, or node dist/cli.js …
from a clone.
Scaffold a packages/ui from an export
Turn a Claude Design export (the project/ folder of a handoff bundle, or a plain
export dir) into a maintainable token + UI package: DTCG tokens → Style Dictionary →
Tailwind v4 @theme, plus a component skeleton. Components are scaffolded (not
auto-converted) with the raw export kept under _design-source/ for Claude Code to port.
pnpm run scaffold:ui -- --src <exportDir> --out <repo>/packages --name ui --ds-name "My DS"Produces packages/tokens (DTCG JSON source of truth + build/theme.css + tokens.ts,
rebuildable with style-dictionary build) and packages/ui (styles/, primitives/,
components/, index.ts, CLAUDE.md), plus a root PROMPT.md with porting steps.
Primitives land in :root; semantic tokens become Tailwind utilities via @theme inline,
with var() references preserved so a one-token re-theme still cascades.
Registering with Claude Code / Cursor
Copy .mcp.json into your project, or add an entry to your existing MCP config:
{
"mcpServers": {
"claude-design": {
"command": "node",
"args": ["/absolute/path/to/claude-design-mcp/dist/server.js"]
}
}
}Architecture
src/server.ts— MCP stdio server; thin tool dispatcher.src/backend.ts—DesignBackendinterface (the contract every backend implements).src/browser.ts— CDP acquisition: spawn/reuse real Chrome with a debug port, attach over CDP, find the design tab.src/backends/cdp.ts— CDP-attached backend; reattaches per call so generations survive across tool calls.src/selectors.ts— ⚠️ THE ONLY PLACE selectors and endpoint patterns live. UI shifts? Edit this one file.src/registry.ts— PersistsprojectId → { url, name }across stdio invocations.src/config.ts/src/errors.ts— env-driven config + structured loud errors.
Once recon captures Claude Design's internal API, tool bodies wire to in-page
fetch (preferred) or DOM interaction, both centralized via src/selectors.ts.
Secrets
./.auth/ (the Chrome debug profile, holding your logged-in session) and any
captures in ./recon/ are gitignored. Never commit them. See
SECURITY.md for the full list and reporting policy.
Contributing
Issues and PRs welcome. See CONTRIBUTING.md for dev setup and
the one rule that matters: when claude.ai changes, fix src/selectors.ts first.
License
MIT © Brokenc0de. Unofficial; not affiliated with Anthropic.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/e-brokenc0de/claude-design-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server