design-architect-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., "@design-architect-mcpreview my UI proposal against our design system"
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.
design-architect-mcp
A stateless Model Context Protocol (MCP) server that exposes a custom design system and UX rulebook as MCP tools. Connect it to Figma Make (or any MCP-compatible client) as a custom connector so that generated UI follows your design language — tokens, components, layout rules, accessibility guidance, and page templates — instead of inventing random styles.
What it exposes
Tool | Purpose |
| Colors, spacing, radius, shadow, and typography tokens |
| High-level design principles (modern, minimal, mobile-first, etc.) |
| Grid columns per breakpoint, max content width, preferred navigation |
| Purpose/variants/sizing/states/accessibility for 14 core components |
| WCAG-oriented contrast, keyboard, focus, semantics, and ARIA guidance |
| Scores a generated UI description (0-100) against the design system, with issues + recommendations |
| Standard SaaS dashboard layout (Sidebar, Header, Stats, Table, Filters, Actions) |
| Standard form page layout (Header, Description, Sections, Inputs, Actions) |
| Standard landing page layout (Hero, Features, Benefits, Testimonials, CTA, Footer) |
| Loads a full vertical-specific design system: |
All data is loaded from JSON files (design-system.json and designs/*.json), not hardcoded, so you can
tune tokens and rules without touching any TypeScript.
Related MCP server: ds-pilot
Architecture
/src
/tools one file per MCP tool, each exports a register*Tool(server) function
/data loader.ts reads and caches the JSON design system files
/types shared TypeScript interfaces
server.ts Express app exposing the MCP server over stateless Streamable HTTP
design-system.json default design system used by the "base" tools
/designs
saas.json
fintech.json
healthcare.json
ecommerce.jsonThe server is stateless: every POST /mcp request creates a brand-new McpServer + transport pair
with no session ID. This keeps horizontal scaling trivial (no session affinity or shared state needed) and
matches how most PaaS platforms (Railway, Render, Fly.io, Azure Container Apps) run containers behind a load
balancer.
Prerequisites
Node.js 18+
npm 9+
1. Local setup
git clone <your-repo-url> design-architect-mcp
cd design-architect-mcp
cp .env.example .env
npm install
npm run devThis starts the server with tsx watch on http://localhost:3000. Verify it's alive:
curl http://localhost:3000/health
# {"status":"ok","service":"design-architect-mcp"}Test a tool call directly against the MCP endpoint:
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": { "name": "get_design_tokens", "arguments": {} }
}'For a production-style run:
npm run build
npm startConnecting to Figma Make
In Figma Make, add a custom MCP connector and point it at:
https://<your-deployed-domain>/mcp(For local testing, expose your local port with a tunneling tool such as ngrok http 3000 and use the
resulting HTTPS URL, since most external tools require HTTPS.)
2. Docker setup
Build and run the container locally:
docker build -t design-architect-mcp .
docker run --rm -p 3000:3000 --env-file .env design-architect-mcpCheck health:
curl http://localhost:3000/healthThe image is a multi-stage build: dependencies and TypeScript compilation happen in a build stage, and
only the compiled dist/, production node_modules, and the JSON data files are copied into the final
production stage, which runs as a non-root user.
3. Deploying to Railway
Push this repository to GitHub (or your Git host of choice).
In Railway: New Project → Deploy from GitHub repo, select this repo.
Railway will detect the
Dockerfileand build it automatically. If it instead tries to use Nixpacks, explicitly set the builder to Dockerfile in the service's Settings → Build.Under Variables, add:
PORT— Railway injects its ownPORT; the server already readsprocess.env.PORT, so no change is needed, but you can overrideNODE_ENV=productionandALLOWED_ORIGINSif desired.
Deploy. Railway will give you a public URL like
https://design-architect-mcp.up.railway.app.Your MCP endpoint is
https://design-architect-mcp.up.railway.app/mcp.
4. Deploying to Render
Push this repository to GitHub.
In Render: New → Web Service, connect the repo.
Set:
Environment: Docker
Dockerfile Path:
Dockerfile(default)Health Check Path:
/health
Add environment variables from
.env.exampleunder Environment → Environment Variables.Deploy. Render will expose the service on
https://<service-name>.onrender.com.Your MCP endpoint is
https://<service-name>.onrender.com/mcp.
5. Deploying to Fly.io
fly launch --no-deploy # generates fly.toml, detects the Dockerfile
fly secrets set NODE_ENV=production
fly deployMake sure fly.toml has an [http_service] section with internal_port = 3000 (matching the PORT the
container listens on) and that health checks point at /health.
6. Deploying to Azure Container Apps
# 1. Build and push the image to Azure Container Registry (ACR)
az acr create --resource-group <rg> --name <acrName> --sku Basic
az acr build --registry <acrName> --image design-architect-mcp:latest .
# 2. Create (or reuse) a Container Apps environment
az containerapp env create \
--name design-architect-env \
--resource-group <rg> \
--location <region>
# 3. Deploy the container app
az containerapp create \
--name design-architect-mcp \
--resource-group <rg> \
--environment design-architect-env \
--image <acrName>.azurecr.io/design-architect-mcp:latest \
--target-port 3000 \
--ingress external \
--registry-server <acrName>.azurecr.io \
--env-vars NODE_ENV=productionAzure Container Apps will give you a public FQDN, e.g. https://design-architect-mcp.<hash>.<region>.azurecontainerapps.io.
Your MCP endpoint is that URL + /mcp.
Customizing the design system
Edit
design-system.jsonto change the defaults returned byget_design_tokens,get_design_principles,get_layout_rules,get_component_library,get_accessibility_rules, and the three template tools.Edit or add files under
/designsto change or extend the vertical-specific systems returned byget_design_system(currentlysaas,fintech,healthcare,ecommerce). To add a new vertical, add adesigns/<name>.jsonfile with the same shape and add<name>to thesystemenum insrc/tools/designSystem.tsandDESIGN_SYSTEM_NAMESinsrc/types/index.ts.No rebuild is required for JSON changes when running with
npm run dev— the loader re-reads on first use per process start. In production, redeploy (or restart the container) to pick up JSON changes, since values are cached in memory per instance for performance.
Notes on statelessness
Because sessionIdGenerator is left undefined when constructing StreamableHTTPServerTransport, this
server does not support the SSE resumable-stream or session-based parts of the Streamable HTTP spec
(GET /mcp and DELETE /mcp both return 405). Every POST /mcp call is fully self-contained, which is
the right tradeoff for a read-mostly, rules/reference server like this one.
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.
Related MCP Servers
- AlicenseAqualityBmaintenanceDesign system MCP server. 20 tools: extract design tokens from any URL, pull from Figma or Penpot, generate React + shadcn/ui components from specs, run WCAG audits, sync tokens bidirectionally.5060739MIT
- Alicense-qualityCmaintenanceMCP server that exposes your design system components and tokens to AI agents, preventing duplicate component creation and hardcoded token values.199MIT
- Alicense-qualityAmaintenanceA read-only MCP server that provides AI coding agents with a queryable contract for design system tokens, components, patterns, and anti-patterns.241Apache 2.0
- Alicense-qualityBmaintenanceAn MCP server that gives AI assistants structured access to a design system's tokens, components, guidelines, and patterns, enabling them to read, lint, and author design system data.1MIT
Related MCP Connectors
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/stefanpricopi-maker/design-architect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server