home / mcp / mcpsystemdesign mcp server
Provides a production-ready MCP server exposing design system components, style guide data, and patterns for AI-assisted design workflows.
Configuration
View docs{
"mcpServers": {
"heyadam-mcpsystemdesign": {
"url": "https://www.mcpsystem.design/sse"
}
}
}You can access the MCP server that exposes design system components and style guides for AI assistants. It provides component specifications, code examples, a style guide, and a reliable SSE transport for remote access, making it easy to integrate design system data into your AI workflows and UI tooling.
Connect to the MCP server from your MCP client to browse components, fetch style guide data, and subscribe to live updates via Server-Sent Events. You can explore component props, see ready-to-use Tailwind CSS patterns, and retrieve color, typography, spacing, and breakpoint tokens. Use the standard HTTP MCP endpoint to establish an SSE connection and to send MCP JSON-RPC messages as needed. When connected, you can search by component name, description, or category and request full documentation for individual components.
Prerequisites: ensure Node.js is installed on your development machine. You should also have a package manager such as npm available.
Step 1: Install dependencies for the local project.
npm installStep 2: Run the development server locally to preview the MCP SSE endpoint.
npm run devStep 3: Access the MCP SSE endpoint at the following local URL.
http://localhost:3000/api/sseStep 4: If you plan to deploy, you can publish to a hosting provider that supports Next.js applications and SSE transport, using your preferred deployment method.
The server includes input validation, rate limiting, and structured logging to improve reliability and security when exposing design system data to AI assistants.
You can extend the design system by editing the designated design data modules to introduce new components, patterns, and style tokens. Ensure all changes pass the projectβs validation scripts to maintain consistency across tokens, colors, and component examples.
If you encounter connection issues, verify that your client supports SSE and that the origin is allowed by the server. Long-running connections may be terminated by the hosting provider, so consider using ping messages or keeping-alive strategies as needed.
Use the MCP serverβs URL to configure your AI assistantβs MCP client. You can then request full component docs, style tokens, and code examples as part of your assistantβs design-system-aware interactions.
List all Tailwind pattern groups available in the MCP server.
Retrieve a specific Tailwind pattern with class variations.
Search patterns by name, description, or category.
Get code examples for a given pattern.
Fetch the entire style guide or a specific section.
Retrieve color tokens, optionally by category.
Retrieve typography styles.
Retrieve spacing scale tokens.
Retrieve responsive breakpoint definitions.
Get an overview of the design system and statistics.
List all @mcpsystem/ui components.
Get component docs including props, events, and CSS parts.
Search components by name or description.