Extract complete design systems from any website and generate AI-ready skill.md files
SaferSkills independently audited website-design-systems-mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<div align="center">
Extract complete design systems from any website and generate AI-ready skill.md files
</div>
website-design-systems-mcp is a Model Context Protocol (MCP) server that extracts comprehensive design systems from any website URL. It generates detailed, AI-readable skill.md files that enable AI assistants to recreate the exact same design.
npm install website-design-systems-mcpOr use directly with npx:
npx website-design-systems-mcpAdd to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"website-design-systems": {
"command": "npx",
"args": ["-y", "website-design-systems-mcp"]
}
}
}Or if installed locally:
{
"mcpServers": {
"website-design-systems": {
"command": "node",
"args": ["/path/to/website-design-systems-mcp/dist/index.js"]
}
}
}extract_design_systemMain tool - Extracts complete design system and generates a comprehensive skill.md file.
Input: { "url": "https://stripe.com" }
Output: Complete skill.md with colors, typography, spacing, and morevalidate_urlQuick check if a URL is accessible before extraction.
Input: { "url": "https://example.com" }
Output: { "accessible": true, "statusCode": 200, "contentType": "text/html" }get_site_colorsExtract only the color palette.
Input: { "url": "https://example.com" }
Output: JSON with primary, secondary, and neutral colorsget_site_typographyExtract only typography information.
Input: { "url": "https://example.com" }
Output: JSON with fonts, type scale, and text stylesThe generated skill.md includes:
# Clone the repository
git clone https://github.com/Kargatharaakash/website-design-systems-mcp.git
cd website-design-systems-mcp
# Install dependencies
npm install
# Build
npm run build
# Run in development
npm run dev<style> tags, and external stylesheetsskill.md fileFor most public websites, the extraction works excellently.
See CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.