MCP Hub
Back to servers

ui-ux-pro-mcp

A comprehensive UI/UX design intelligence server providing instant access to over 1,700 curated resources, including color palettes, typography, accessibility guidelines, and framework-specific design patterns.

Stars
2
Tools
12
Updated
Jan 19, 2026
Validated
Feb 23, 2026

🎨 UI/UX Pro MCP Server

npm version npm downloads License: MIT TypeScript MCP Compatible GitHub stars

AI-powered UI/UX design intelligence — Instantly access 1,700+ curated design resources through natural language search.


✨ Features

FeatureDetails
📚 1,700+ DocumentsCurated design knowledge across 11 domains
🔧 6 ToolsConsolidated search tools optimized for LLM performance
BM25 RankingFast, relevant search results using industry-standard text ranking
🔗 UniversalWorks with VS Code, Claude Desktop, Cursor, and any MCP-compatible client
🎯 12 FrameworksStack-specific guidelines for React, Vue, Next.js, Flutter, SwiftUI, Jetpack Compose, and more

🚀 Quick Start

Option 1: NPX (Recommended)

npx ui-ux-pro-mcp

Option 2: Global Install

npm install -g ui-ux-pro-mcp
ui-ux-pro-mcp

Option 3: From Source

# Clone the repository
git clone https://github.com/redf0x1/ui-ux-pro-mcp.git
cd ui-ux-pro-mcp

# Install dependencies
npm install

# Build the project
npm run build

# Run the server
npm start

⚙️ MCP Configuration

VS Code / Cursor

Add to your MCP settings (settings.json or mcp.json):

Option A: Using NPX (Recommended - No Installation Required)

{
  "mcpServers": {
    "ui-ux-pro": {
      "command": "npx",
      "args": ["ui-ux-pro-mcp", "--stdio"]
    }
  }
}

Option B: Using Global Install

{
  "mcpServers": {
    "ui-ux-pro": {
      "command": "ui-ux-pro-mcp",
      "args": ["--stdio"]
    }
  }
}

Option C: From Source

{
  "mcpServers": {
    "ui-ux-pro": {
      "command": "node",
      "args": [
        "/path/to/ui-ux-pro-mcp/dist/index.js",
        "--stdio"
      ]
    }
  }
}

Configuration file locations:

PlatformPath
macOS~/Library/Application Support/Code/User/mcp.json
Windows%APPDATA%\Code\User\mcp.json
Linux~/.config/Code/User/mcp.json

Claude Desktop

Add to your Claude Desktop configuration:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

Option A: Using NPX (Recommended - No Installation Required)

{
  "mcpServers": {
    "ui-ux-pro": {
      "command": "npx",
      "args": ["ui-ux-pro-mcp", "--stdio"]
    }
  }
}

Option B: Using Global Install

{
  "mcpServers": {
    "ui-ux-pro": {
      "command": "ui-ux-pro-mcp",
      "args": ["--stdio"]
    }
  }
}

Option C: From Source

{
  "mcpServers": {
    "ui-ux-pro": {
      "command": "node",
      "args": [
        "/path/to/ui-ux-pro-mcp/dist/index.js",
        "--stdio"
      ]
    }
  }
}

🔧 Available Tools

ToolDocumentsDescription
search_ui_styles85UI design styles (Glassmorphism, Minimalism, Brutalism, etc.) with colors, effects, and use cases
search_colors121Color palettes for industries (SaaS, Healthcare, Fintech) with hex codes
search_typography74Font pairings with Google Fonts imports and Tailwind configs
search_charts37Chart types with implementation recommendations for dashboards
search_ux_guidelines115UX best practices, do's and don'ts, accessibility (WCAG)
search_icons176Curated Lucide icons with import codes and use cases
search_landing49Landing patterns, Bento Grids (Config & Maps), Responsive Strategy
search_products114Product type design recommendations per industry
search_prompts39AI prompt templates with CSS snippets and implementation checklists
search_stack696Framework-specific guidelines (React, Vue, Next.js, Flutter, etc.)
search_allAllUnified search across all design domains
get_design_systemGenerate complete design system with colors, typography, UI style, and layout in one call

💬 Example Prompts

Use these with Claude, Cursor, or any MCP-compatible AI:

🎨 Design Systems
"What UI style works best for a fintech dashboard?"
"Give me a color palette for a healthcare app"
"Find modern font pairings for a SaaS landing page"

📊 Data Visualization
"What chart type should I use for time-series data?"
"How do I make charts accessible?"

🖥️ Landing Pages
"Show me landing page patterns for SaaS conversion"
"What sections should a pricing page have?"

📱 UX Guidelines
"What are mobile touch target best practices?"
"Show me accessibility guidelines for forms"

⚛️ Framework-Specific
"React hooks best practices"
"Vue 3 composition API patterns"
"Next.js App Router guidelines"
"Flutter state management recommendations"

📂 Data Sources

This server aggregates curated design intelligence from multiple domains:

DomainFileCountContent
Stylesstyles.csv85UI design trends, effects, animations
Colorscolors.csv121Industry-specific color palettes
Typographytypography.csv74Font pairings and configurations
Chartscharts.csv37Data visualization recommendations
UX Guidelinesux-guidelines.csv115Usability and accessibility best practices
Iconsicons.csv176Lucide icon recommendations
Landinglanding.csv49Patterns, Bento Layout Maps, Responsive Strategy
Productsproducts.csv114Industry design recommendations
Promptsprompts.csv39AI prompt templates
Stacksstacks/*.csv766Framework-specific guidelines (12 stacks)

Available Framework Stacks: flutter · html-tailwind · jetpack-compose · nextjs · nuxt-ui · nuxtjs · react-native · react · shadcn · svelte · swiftui · vue


📖 API Reference

Common Input Parameters

All search tools accept:

ParameterTypeDefaultDescription
querystringrequiredNatural language search query
max_resultsnumber3Maximum results to return (1-50)

search_stack Additional Parameter

ParameterTypeDescription
stack_namestringFramework name: react, vue, nextjs, flutter, swiftui, etc.

Response Format

All tools return results in this structure:

{
  results: Array<{
    id: string;           // Document identifier
    score: number;        // BM25 relevance score
    type: string;         // Document type (style, color, etc.)
    data: object;         // Full document data
  }>;
  total: number;          // Total results returned
  query: string;          // Original search query
}

Error Response

{
  error: string;          // Error description
}

🛠️ Development

Build Commands

# Build TypeScript to JavaScript
npm run build

# Development mode with hot reload
npm run dev

# Start production server (stdio mode)
npm start

# Start HTTP server for testing
npm run start:http

Testing

# Run test suite
npm test

HTTP Mode for Testing

The server can run in HTTP mode for testing without MCP clients:

# Start HTTP server on port 3456
PORT=3456 npm run start:http

Then test with curl:

curl -X POST http://localhost:3456/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"search_colors","arguments":{"query":"fintech"}},"id":1}'

Project Structure

ui-ux-pro-mcp/
├── src/
│   ├── index.ts          # MCP server entry point
│   ├── data/
│   │   └── loader.ts     # CSV data loading utilities
│   ├── search/
│   │   └── bm25.ts       # BM25 search implementation
│   └── tools/
│       ├── index.ts      # Tool exports
│       └── handlers.ts   # Search handlers
├── data/
│   ├── *.csv             # Design domain data files
│   └── stacks/           # Framework-specific guidelines
└── dist/                 # Compiled JavaScript output

🌐 Environment Variables

VariableDefaultDescription
MCP_LOG_LEVELinfoLog level (debug, info, warn, error)
PORT3000HTTP server port (when using HTTP transport)
MCP_HTTP_HOSTlocalhostHTTP server host

🔌 HTTP Transport Mode

For development and testing, you can run the server in HTTP mode:

# Start HTTP server
npm run start:http

# Server runs at http://localhost:3000
# SSE endpoint: GET /sse
# Message endpoint: POST /message

Test with curl:

curl -X POST http://localhost:3000/message \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_colors","arguments":{"query":"fintech"}}}'

❓ Troubleshooting

MCP Connection Issues

"Cannot find MCP server"

  • Ensure npm run build completed successfully
  • Check the path in your MCP config points to dist/index.js
  • Verify Node.js is in your PATH

"No results returned"

  • Try broader search terms
  • Use search_all for cross-domain queries
  • Check if the domain matches your query type

"Server not responding"

  • Restart VS Code/Claude Desktop
  • Check terminal for error messages
  • Verify the server process is running

Common Queries

NeedBest Tool
Color palettessearch_styles with domain: "color"
UI componentssearch_styles with domain: "style"
Best practicessearch_patterns with type: "ux"
Iconssearch_components with type: "icon"
Framework tipssearch_stack
Everythingsearch_all

� Contact


�📄 License

MIT License — see LICENSE for details.


🙏 Acknowledgments


⭐ Star this repo if you find it useful!

Made with ❤️ by redf0x1

Reviews

No reviews yet

Sign in to write a review