design-clone-mcp
Click on "Deploy 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-clone-mcpClone the design from https://stripe.com"
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 Clone MCP Server
One-click website design cloning with Puppeteer
Clone any website's design and get structured data (HTML, CSS, colors, fonts, layout) that you can use to recreate it.
🚀 Installation
One Command Install:
npx @minutelaunch/design-clone-mcpOr install globally:
npm install -g @minutelaunch/design-clone-mcpRelated MCP server: browser-mcp
📋 Prerequisites
Node.js 18+ (Puppeteer requirement)
That's it!
Puppeteer (including Chromium) is bundled automatically.
🎯 Usage
In Cursor or Claude Desktop:
Just say:
"Clone the design from https://stripe.com"The MCP server will:
Launch Puppeteer
Capture the website design
Extract colors, fonts, HTML, CSS
Return structured data
You can then use it to create pages
Manual Testing:
# Start the server
design-clone-mcp
# Or with npx
npx @minutelaunch/design-clone-mcp🔧 Configuration
For Cursor:
Add to your ~/.cursor/mcp.json:
{
"mcpServers": {
"design-clone": {
"command": "npx",
"args": ["@minutelaunch/design-clone-mcp"]
}
}
}For Claude Desktop:
Add to your claude_desktop_config.json:
{
"mcpServers": {
"design-clone": {
"command": "npx",
"args": ["@minutelaunch/design-clone-mcp"]
}
}
}📊 What Gets Captured
✅ HTML - Full rendered HTML (up to 50KB)
✅ Colors - All background and text colors (top 20)
✅ Fonts - All font families used (top 10)
✅ Sections - Header, main, footer, etc. with computed styles
✅ Layout - Padding, margin, display properties
✅ Metadata - Capture timestamp, viewport size
🎨 Example Output
{
"url": "https://stripe.com/pricing",
"title": "Pricing - Stripe",
"colors": [
"rgb(99, 91, 255)",
"rgb(10, 37, 64)",
"rgb(255, 255, 255)"
],
"fonts": [
"Inter, sans-serif",
"system-ui"
],
"sections": [
{
"tag": "header",
"className": "site-header",
"html": "<header>...</header>",
"computedStyles": {
"backgroundColor": "rgb(255, 255, 255)",
"color": "rgb(10, 37, 64)",
"fontSize": "16px",
"fontFamily": "Inter, sans-serif",
"padding": "20px",
"margin": "0px"
}
}
],
"metadata": {
"capturedAt": "2025-10-28T12:00:00.000Z",
"viewport": {
"width": 1920,
"height": 1080
}
}
}🔌 Available Tools
clone_website_design
Clone a website's design and get structured data.
Parameters:
url(string, required) - The URL to clone
Returns:
Structured design data (JSON)
🛠️ Development
# Clone the repo
git clone https://github.com/wplaunchify/design-clone-mcp.git
cd design-clone-mcp
# Install dependencies
npm install
# Build
npm run build
# Run locally
npm start📝 Notes
Timeout: Default 30 seconds per page
Size Limits: HTML limited to 50KB, sections limited to 10
Public Sites Only: Only captures publicly accessible websites
No Authentication: Can't capture sites requiring login
🐛 Troubleshooting
Puppeteer won't install
npm install puppeteer --unsafe-perm=trueTimeout errors
Increase timeout in the code or try again (some sites are slow)
"Command not found"
Make sure Node.js 18+ is installed:
node --version📄 License
MIT
👤 Author
MinuteLaunch Team
Just works. No configuration. One command. 🚀
Available Tools
1 toolclone_website_designA
Clone a website design by capturing HTML, CSS, colors, fonts, and layout. Returns structured design data that can be used to recreate the page.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL of the website to clone (e.g., https://stripe.com/pricing) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden. It discloses what is captured and that structured design data is returned, but omits side effects, network/scraping implications, rate limits, authentication needs, and how dynamic content is handled.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tight sentences with the core action front-loaded and no filler. The second sentence adds useful return-value context without bloat.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description does well by naming captured artifacts and describing the return as structured design data for recreation. It could be more explicit about return format, but it is largely complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the single URL parameter is fully documented with an example. The description adds no additional meaning beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (clone) and resource (website design), then enumerates the exact artifacts captured (HTML, CSS, colors, fonts, layout). An agent can tell exactly what this tool produces without inspecting the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies its use case (cloning a website design from a URL) but offers no explicit when-to-use guidance, prerequisites, or exclusions. There are no sibling tools to differentiate from, so the lack of comparative guidance is less damaging, but still a gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
v1.0.0- First observed
clone_website_design
TDQS
Scored across 1 tool
With only one tool, there is no possibility of confusion or misselection. The tool's purpose is unambiguous.
The single tool name 'clone_website_design' follows a clear verb_noun pattern in snake_case. No inconsistency can exist with only one tool.
One tool is borderline thin for a server, even though the task is well-defined. The rubric considers 1-2 tools as feeling thin.
The tool covers the entire stated purpose: capturing HTML, CSS, colors, fonts, and layout for design cloning. No obvious gaps exist for this single-operation domain.
Maintenance
Related MCP Connectors
- miromiroOAuthapp.miromiro
Turn any live website into brand colors, fonts, design tokens, SVGs, Lottie and paste-ready code.
Turn any website into structured JSON data matching your custom schema.
Fetch and extract data from any public web page, even JS-rendered or anti-bot protected
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Related MCP Servers
- FlicenseAqualityDmaintenanceCaptures webpage styles and HTML, converts CSS to Tailwind, and applies extracted designs to frontend frameworks like React.34-
- AlicenseAqualityDmaintenanceA powerful MCP server for UI designers and developers to extract, analyze, and clone website front-end code (HTML, CSS) with pixel-perfect accuracy using browser automation.115 npm3MIT
- AlicenseNot gradedqualityDmaintenanceExtracts brand identity (colors, typography, spacing) from any website and generates HTML/CSS replicas or applies branding to templates.1MIT
- AlicenseNot gradedqualityDmaintenanceClone, scrape and crawl any website. Free Firecrawl alternative with no API keys or rate limits.10 npmMIT