Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
Simple Design MCP Orchestrator logo

Simple Design MCP Orchestrator

kylegold/simple-design-mcp
0 starsNOASSERTIONUpdated 2025-07-30Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Orchestrates app design workflows for Claude Code local execution, enabling creation, updating, and component addition without rate limits.

README.md

Simple Design MCP Orchestrator v3.0

Orchestrates app design workflows for Claude Code local execution - no more rate limits! 🎯

What's New in v3.0 - The Orchestrator Architecture

The Problem We Solved

  • v2.0 Issue: MCP server did all the work, hitting rate limits (100 req/min)
  • v3.0 Solution: MCP returns workflows, Claude Code executes locally using YOUR tokens

How It Works Now

User → Commands.com → MCP Orchestrator → Workflow Instructions → Claude Code (local execution) → Success!

Key Benefits

  1. 🚀 No Rate Limits - Uses your Claude Code tokens, not the server's
  2. ⚡ Faster Execution - No network roundtrips for AI calls
  3. 🔍 Full Transparency - See exactly what's happening
  4. 🛡️ Better Privacy - Your data stays on your machine
  5. 📈 Infinitely Scalable - Server just returns instructions

Available Orchestration Tools

🎼 simple_design_orchestrate

Get a complete workflow for designing apps - returns instructions for Claude Code to execute locally.

Parameters:

  • task: The design task (create_app, update_design, add_component)
  • input: Task-specific parameters

Example Response: ``json { "workflowId": "create_app_1234567890", "workflow": { "name": "Create App Workflow", "steps": [/ step-by-step instructions /] }, "agents": {/ agent templates /}, "components": {/ component specs /}, "estimatedTokens": 4800 } ``

🤖 simple_design_get_agent

Get specific agent templates for local execution.

Parameters:

  • agentName: Name of the agent (e.g., "DesignBrief", "UXFlow")
  • action: Optional specific action

🧩 simple_design_get_component

Get component specifications for UI building.

Parameters:

  • componentName: Component to get specs for
  • appType: Optional app type for context

How Commands Work

Creating an App

You type: /design-app "recipe sharing app"

What happens:

  1. MCP orchestrator analyzes your request
  2. Returns a workflow with:
  • Design Brief agent template
  • UX Flow generation instructions
  • UI component specifications
  • File structure guidelines
  1. Claude Code executes each step locally
  2. HTML/CSS files created on your machine
  3. No rate limits!

Updating a Design

You type: /update-design "make the header blue"

What happens:

  1. Orchestrator returns change analysis workflow
  2. Claude Code analyzes the change locally
  3. Updates files using your resources
  4. Instant results, no server load

Architecture Overview

Core Components

  1. WorkflowOrchestrator - Main orchestration engine
  2. AgentTemplates - Lightweight agent instructions
  3. ComponentSpecs - UI component specifications
  4. WorkflowDefinitions - Complete workflow structures

Agent Templates

  • DesignBrief - Analyzes app requirements
  • UXFlow - Creates screen structure
  • UIGenerator - Selects UI components
  • FileCreator - Generates file structure
  • ChangeAnalyzer - Understands update requests
  • ComponentIntegrator - Adds new components

Component Library

  • Navigation: navbar, sidebar
  • Layout: hero, grid, container
  • Content: cards, galleries, testimonials
  • Forms: search, inputs, buttons
  • Data: charts, stats, tables
  • App-specific: recipe cards, workout cards, etc.

Installation & Setup

  1. Deploy to Railway (or your preferred platform)
  2. Import to Commands.com
  3. Use with Claude Code

No local installation needed - it's all orchestrated!

For Developers

Testing Locally

npm install
npm test  # Run orchestrator tests

Example Integration

// Get workflow from orchestrator
const workflow = await mcp.call('simple_design_orchestrate', {
  task: 'create_app',
  input: { description: 'fitness app' }
});

// Execute locally in Claude Code
for (const step of workflow.steps) {
  await executeStep(step, workflow.agents[step.agent]);
}

Migration from v2.0

See MIGRATION.md for upgrade instructions.

Support

---

Built with ❤️ to solve rate limiting and empower local execution!

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.