Labsco
freema logo

MCP Design System Extractor

β˜… 68

from freema

Extracts component information, including HTML, styles, and metadata, from Storybook design systems.

πŸ”₯πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeQuick setup

MCP Design System Extractor

A Model Context Protocol (MCP) server that extracts component information from Storybook design systems. Connects to Storybook instances and extracts HTML, styles, and component metadata.

Demo

Key Dependencies

  • Puppeteer: Uses headless Chrome for dynamic JavaScript component rendering
  • Chrome/Chromium: Required for Puppeteer (automatically handled in Docker)
  • Works with built Storybook distributions
<a href="https://glama.ai/mcp/servers/@freema/mcp-design-system-extractor"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@freema/mcp-design-system-extractor/badge" alt="Design System Extractor MCP server" /> </a>

Features

  • List Components: Get all available components from your Storybook with compact mode
  • Extract HTML: Get the rendered HTML of any component (async or sync mode)
  • Search Components: Find components by name, title, category, or purpose
  • Component Dependencies: Analyze which components are used within other components
  • Theme Information: Extract design system theme (colors, spacing, typography)
  • External CSS Analysis: Fetch and analyze CSS files to extract design tokens
  • Async Job Queue: Long-running operations run in background with job tracking

Environment Variables

VariableDescriptionDefault
STORYBOOK_URLURL of your Storybook instancehttp://localhost:6006
NODE_TLS_REJECT_UNAUTHORIZEDSet to 0 to skip SSL certificate verification (for self-signed certs)1

Example with self-signed certificate:

Copy & paste β€” that's it
{
  "mcpServers": {
    "design-system": {
      "command": "node",
      "args": ["/path/to/dist/index.js"],
      "env": {
        "STORYBOOK_URL": "https://my-storybook.example.com",
        "NODE_TLS_REJECT_UNAUTHORIZED": "0"
      }
    }
  }
}

Available Tools (9 total)

Core Tools

  1. list_components

    • Lists all available components from the Storybook instance
    • Use compact: true for minimal output (reduces response size)
    • Filter by category parameter
    • Supports pagination with page and pageSize (default: 20)
  2. get_component_html

    • Extracts HTML from a specific component story
    • Async by default: Returns job_id, use job_status to poll for results
    • Set async: false for synchronous mode (uses timeout parameter)
    • Use variantsOnly: true to get list of available variants (sync, fast)
    • Optional includeStyles: true for CSS extraction (Storybook CSS filtered out)
    • Story ID format: "component-name--story-name" or just "component-name" (auto-resolves to default variant)
  3. search_components

    • Search components by name, title, category, or purpose
    • query: Search term (use "*" for all)
    • purpose: Find by function ("form inputs", "navigation", "feedback", "buttons", etc.)
    • searchIn: "name", "title", "category", or "all" (default)
    • Supports pagination with page and pageSize

Component Analysis Tools

  1. get_component_dependencies
    • Analyzes rendered HTML to find which other components are used internally
    • Detects React components, web components, and CSS class patterns
    • Requires story ID format: "component-name--story-name"

Design System Tools

  1. get_theme_info

    • Extracts design system theme (colors, spacing, typography, breakpoints)
    • Gets CSS custom properties/variables
    • Use includeAll: true for all CSS variables
  2. get_external_css

    • DEFAULT: Returns only design tokens + file stats (avoids token limits)
    • Extracts & categorizes tokens: colors, spacing, typography, shadows
    • Use includeFullCSS: true only when you need full CSS content
    • Security-protected: only accepts URLs from same domain as Storybook

Job Management Tools

  1. job_status

    • Check status of an async job
    • Returns: status, result (when completed), error (when failed)
    • Poll this after calling get_component_html in async mode
  2. job_cancel

    • Cancel a queued or running job
    • Returns whether cancellation was successful
  3. job_list

    • List all jobs with their status
    • Filter by status: "all" (default), "active" (queued/running), "completed"
    • Returns job list + queue statistics

Example Prompts

Once connected, you can use natural language prompts with Claude:

MCP Servers Connected

Component Discovery:

Copy & paste β€” that's it
Show me all available button components in the design system

Building New Features:

Copy & paste β€” that's it
I need to create a user profile card. Find relevant components
from the design system and show me their HTML structure.

Design System Analysis:

Copy & paste β€” that's it
Extract the color palette and typography tokens from the design system.
I want to ensure my new component matches the existing styles.

Component Migration:

Copy & paste β€” that's it
Get the HTML and styles for the "alert" component. I need to
recreate it in a different framework while keeping the same look.

Multi-Tool Workflow:

Copy & paste β€” that's it
First list all form-related components, then get the HTML for
the input and select components. I'm building a registration form.

How It Works

Connects to Storybook via /index.json and /iframe.html endpoints. Uses Puppeteer with headless Chrome for dynamic JavaScript rendering. Long-running operations use an in-memory job queue with max 2 concurrent jobs and 1-hour TTL for completed jobs.

Development

See DEVELOPMENT.md for detailed development instructions.

Author

Created by TomΓ‘Ε‘ Grasl

License

MIT