ui-ux-pro-mcp
Provides CSS snippets, styling templates, and implementation checklists for various design styles like Glassmorphism and Minimalism.
Provides framework-specific design guidelines, state management recommendations, and UI implementation best practices for Flutter development.
Offers curated font pairing recommendations along with ready-to-use Google Fonts import configurations.
Includes a searchable database of Lucide icons with associated import codes and specific industry use cases.
Supplies specialized design intelligence and implementation patterns for Next.js, including App Router best practices.
Provides UI patterns and framework-specific guidelines for building applications with Nuxt.js and Nuxt UI.
Delivers React-specific design guidelines, hooks best practices, and patterns for both standard React and React Native.
Offers framework-specific design intelligence and implementation recommendations tailored for Svelte development.
Provides design system guidelines and implementation patterns specifically for SwiftUI development within the Swift ecosystem.
π¨ UI/UX Pro MCP Server
AI-powered UI/UX design intelligence β Instantly access 1,920+ curated design resources through natural language search.
β¨ Features
Feature | Details |
π 1,920+ Documents | Curated design knowledge across 11 domains + 2 platforms |
π§ 6 Tools | Consolidated search tools optimized for LLM performance |
β‘ BM25 Ranking | Fast, relevant search results using industry-standard text ranking |
π Universal | Works with VS Code, Claude Desktop, Cursor, and any MCP-compatible client |
π― 12 Frameworks | Stack-specific guidelines for React, Vue, Next.js, Flutter, SwiftUI, Jetpack Compose, and more |
π± Platform Guidelines | iOS Human Interface Guidelines (110) + Android Material 3 (112) with cross-platform equivalents |
Platform-Specific Design
iOS Human Interface Guidelines (110 patterns) β Colors, typography, navigation, gestures, accessibility with SwiftUI, Flutter, React Native code
Android Material 3 Design (112 patterns) β Dynamic color, typography, components, elevation, motion with Compose, Flutter, React Native code
Cross-platform code equivalents β Every pattern includes Flutter_Equiv and RN_Equiv for building native-feeling apps without native code
Auto-detection from keywords β Queries containing iOS/Android keywords automatically boost platform-specific results
Related MCP server: seedflip-mcp
π Quick Start
Option 1: NPX (Recommended)
npx ui-ux-pro-mcpOption 2: Global Install
npm install -g ui-ux-pro-mcp
ui-ux-pro-mcpOption 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:
Platform | Path |
macOS |
|
Windows |
|
Linux |
|
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
Tool | Documents | Description |
| 85 | UI design styles (Glassmorphism, Minimalism, Brutalism, etc.) with colors, effects, and use cases |
| 121 | Color palettes for industries (SaaS, Healthcare, Fintech) with hex codes |
| 74 | Font pairings with Google Fonts imports and Tailwind configs |
| 37 | Chart types with implementation recommendations for dashboards |
| 115 | UX best practices, do's and don'ts, accessibility (WCAG) |
| 176 | Curated Lucide icons with import codes and use cases |
| 49 | Landing patterns, Bento Grids (Config & Maps), Responsive Strategy |
| 114 | Product type design recommendations per industry |
| 39 | AI prompt templates with CSS snippets and implementation checklists |
| 696 | Framework-specific guidelines (React, Vue, Next.js, Flutter, etc.) |
| All | Unified search across all design domains |
| β | Generate complete design system with colors, typography, UI style, and layout in one call |
AI-Optimized Query Processing
The get_design_system tool uses intelligent query processing optimized for AI model consumers:
Position-Weighted Intent Classification
Queries are processed left-to-right with multi-word phrase priority:
Multi-word phrases first: "landing page", "admin panel", "hero section" have higher priority
Then single words: "dashboard", "landing", "analytics"
Position matters: Earlier keywords get higher confidence (5% penalty per word position)
Examples:
Query | Detected Intent | Reason |
"SaaS landing page dashboard" | landing | "landing page" phrase found |
"dashboard for SaaS landing" | dashboard | "dashboard" is first |
"admin panel with hero section" | dashboard | "admin panel" phrase beats "hero" |
"website for fintech startup" | landing | "website" maps to landing |
AI-Optimized Output Structure
The _meta field provides transparency for AI models:
{
"_meta": {
"query_interpretation": "SaaS landing page with glassmorphism (dark mode)",
"detected_intent": "landing",
"intent_confidence": 0.85,
"matched_keyword": "landing page",
"keyword_position": 1,
"warnings": []
}
}Dark Mode Color Parsing
When mode: "dark", the tool:
Searches for dark-mode compatible palettes
Parses
Dark_Mode_ColorsJSON from the databaseReplaces palette colors with dark mode equivalents
Includes both light and dark mode palettes in response
Code-Ready Snippets
Colors include ready-to-paste code:
{
"colors": {
"css_variables": "--primary: #0066FF; --background: #0A0E14; --text: #E5E5E5;",
"tailwind_config": "colors: { primary: '#0066FF', ... }"
}
}Layout Source Indicator
The layout.source field tells AI models where the layout recommendation came from:
"landing"- From landing page patterns database"dashboard"- From product's dashboard style recommendation
π¬ 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"
π± Platform Guidelines (NEW)
"iOS navigation patterns"
"Android Material 3 color system"
"SwiftUI style without Swift" β Flutter/RN equivalents
"iOS typography guidelines with Flutter equivalent"
"Android dynamic color implementation"Platform Keyword Triggers
The search engine automatically detects platform intent from these keywords:
Platform | Trigger Keywords |
iOS |
|
Android |
|
Cross-Platform Query Examples
π iOS Design Without Swift
Query: "SwiftUI style flutter e-commerce"
Returns: iOS HIG patterns with Flutter_Equiv code (CupertinoWidgets)
π€ Android Material 3
Query: "material design android dashboard"
Returns: Material 3 patterns with Compose, Flutter, RN equivalents
π Cross-Platform Patterns
Query: "iOS navigation patterns react native"
Returns: iOS navigation guidelines with RN_Equiv implementationsπ Data Sources
This server aggregates curated design intelligence from multiple domains:
Domain | File | Count | Content |
Styles |
| 85 | UI design trends, effects, animations |
Colors |
| 121 | Industry-specific color palettes |
Typography |
| 74 | Font pairings and configurations |
Charts |
| 37 | Data visualization recommendations |
UX Guidelines |
| 115 | Usability and accessibility best practices |
Icons |
| 176 | Lucide icon recommendations |
Landing |
| 49 | Patterns, Bento Layout Maps, Responsive Strategy |
Products |
| 114 | Industry design recommendations |
Prompts |
| 39 | AI prompt templates |
Stacks |
| 766 | Framework-specific guidelines (12 stacks) |
iOS |
| 110 | iOS Human Interface Guidelines with cross-platform equivalents |
Android |
| 112 | Android Material 3 Design with cross-platform equivalents |
Available Framework Stacks:
flutter Β· html-tailwind Β· jetpack-compose Β· nextjs Β· nuxt-ui Β· nuxtjs Β· react-native Β· react Β· shadcn Β· svelte Β· swiftui Β· vue
Platform-Specific Guidelines:
ios (110 entries) Β· android (112 entries)
Platform data includes:
Flutter_Equiv: CupertinoWidgets/Material widget equivalents
RN_Equiv: React Native implementation patterns
Categories: Colors, Typography, Spacing, Components, Navigation, Gestures/Shapes, Animation/Motion, Icons, Layout, Accessibility
π API Reference
Common Input Parameters
All search tools accept:
Parameter | Type | Default | Description |
| string | required | Natural language search query |
| number | 3 | Maximum results to return (1-50) |
search_stack Additional Parameter
Parameter | Type | Description |
| string | Framework name: |
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:httpTesting
# Run test suite
npm testHTTP 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:httpThen 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 (12 stacks)
β βββ platforms/ # Platform guidelines (iOS HIG, Android M3)
βββ dist/ # Compiled JavaScript outputπ Environment Variables
Variable | Default | Description |
|
| Log level (debug, info, warn, error) |
|
| HTTP server port (when using HTTP transport) |
|
| HTTP 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 /messageTest 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 buildcompleted successfullyCheck the path in your MCP config points to
dist/index.jsVerify Node.js is in your PATH
"No results returned"
Try broader search terms
Use
search_allfor cross-domain queriesCheck 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
Need | Best Tool |
Color palettes |
|
UI components |
|
Best practices |
|
Icons |
|
Framework tips |
|
Everything |
|
οΏ½ Contact
οΏ½π License
MIT License β see LICENSE for details.
π Acknowledgments
Original Data: Based on nextlevelbuilder/ui-ux-pro-max-skill
MCP SDK: Built with @modelcontextprotocol/sdk
Search: BM25 ranking algorithm for relevance scoring
β Star this repo if you find it useful!
Made with β€οΈ by redf0x1
Available Tools
7 toolsget_design_systemA
Generate a complete design system by combining styles, colors, typography, and layout patterns.
WHEN TO USE: Starting a new project, need cohesive design foundation, want all design elements in one call.
PLATFORM DETECTION: Platform is auto-detected from query keywords (iOS, Android, Flutter, etc.) or can be explicitly specified via the platform parameter.
If platform is specified, it overrides auto-detection
Platform affects navigation patterns, safe areas, touch targets
When iOS keywords (ios, swiftui, cupertino) or Android keywords (android, material 3, jetpack compose) are detected, returns platform_guidelines with HIG/Material patterns and cross-platform code equivalents (Flutter_Equiv, RN_Equiv)
INTENT DETECTION: Layout is auto-detected based on query structure:
Multi-word phrases take priority: "landing page" β landing layout
Single keywords scanned left-to-right: "analytics saas" β dashboard (analytics detected first)
Position matters: first intent keyword wins
INTENT KEYWORDS:
For landing layouts: "landing page", "homepage", "website", "hero", "cta"
For dashboard layouts: "dashboard", "analytics", "admin panel", "metrics", "kpi"
QUERY TIPS: Place intent keywords at START of query for highest confidence.
RETURNS: Integrated design system with _meta showing detected/resolved platform, intent, colors (with dark_mode if mode="dark"), typography, UI style, layout with source indicator, and platform_guidelines when iOS/Android detected.
EXAMPLES: "landing page fintech dark glassmorphism", "dashboard analytics saas", "e-commerce website luxury", "admin panel healthcare", "flutter fintech mobile", "ios finance app", "android material dashboard"
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Product type + intent + style description. Intent keyword placement matters: "landing page saas" β landing layout, "analytics dashboard saas" β dashboard layout. Multi-word phrases like "landing page", "admin panel" have priority over single words. | |
| style | No | Specific style preference (e.g., "glassmorphism", "minimalism", "brutalism") | |
| mode | No | Color mode preference. When "dark", the tool parses Dark_Mode_Colors and returns dark-optimized palette with dark background/text colors. | |
| max_results | No | Maximum items per domain | |
| platform | No | Target platform for design system. If not specified, will be auto-detected from query. Use to override auto-detection. | |
| output_format | No | β οΈ RECOMMENDED: Leave empty (defaults to 'ai-optimized' ~3.5K tokens). Only change if you have a specific reason. Options: 'ai-optimized' (default, best for AI coding), 'minimal' (~8K, includes HTML templates), 'full' (β οΈ NOT recommended - 15K+ tokens, programmatic use only), 'structured' (JSON only, no guide). | |
| include_hover_effects | No | Include hover_effects CSS in output. Default: false for ai-optimized, true for other formats. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and delivers comprehensive behavioral disclosure. It details platform auto-detection logic, intent detection algorithms, keyword priority rules, query structuring tips, and exactly what the tool returns (including _meta data, dark mode handling, and platform-specific guidelines). This goes far beyond basic functionality description.
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?
The description is well-structured with clear sections (WHEN TO USE, PLATFORM DETECTION, etc.), but at ~250 words it's quite lengthy. While most content is valuable, some details like specific keyword lists and detection algorithms might be excessive for a tool description. The information is front-loaded with the core purpose, but could be more concise.
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 complex 7-parameter tool with no annotations and no output schema, the description provides exceptional completeness. It covers behavioral logic, parameter interactions, usage scenarios, return format details, and practical examples. The agent has everything needed to understand when and how to use this tool effectively despite the absence of structured metadata.
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?
While schema description coverage is 100%, the description adds significant value by explaining the interaction between parameters (e.g., platform parameter overrides auto-detection, mode='dark' triggers dark-optimized palettes) and providing practical examples of how query parameter structure affects intent detection. It also offers query formatting recommendations not present in the schema.
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?
The description clearly states the tool's purpose with a specific verb ('generate') and resource ('complete design system') while distinguishing it from sibling tools that search for components, patterns, platforms, etc. rather than generating integrated systems. The opening sentence precisely defines what the tool creates.
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 includes an explicit 'WHEN TO USE' section that lists three specific scenarios (starting new project, needing cohesive foundation, wanting all elements in one call). It also distinguishes this tool from sibling search tools by emphasizing it provides 'all design elements in one call' rather than searching for individual components.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_allA
Unified search across ALL design domains with intelligent auto-detection. Searches: styles, colors, typography, charts, icons, ux-guidelines, landing, products, prompts, platforms (iOS HIG, Android Material 3).
WHEN TO USE: DEFAULT tool for broad queries. Use when unsure which specific tool, or need multi-domain results.
PLATFORM DETECTION: Platform keywords (ios, swiftui, cupertino, android, material, jetpack compose) trigger platform-specific results with cross-platform code equivalents (Flutter_Equiv, RN_Equiv).
QUERY TIPS: Use natural language describing your design goal. System auto-detects relevant domains.
RETURNS: Results grouped by domain with relevance scores. Each domain returns its specific fields.
EXAMPLES: "modern fintech dashboard dark", "ios button design", "android navigation patterns", "e-commerce checkout ux", "startup landing complete"
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query across all design domains | |
| max_results | No | Maximum number of results per domain |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does so effectively. It discloses key behavioral traits: intelligent auto-detection of domains, platform keyword detection with cross-platform code equivalents, natural language query processing, and result grouping by domain with relevance scores. It doesn't mention rate limits or authentication needs, but provides substantial operational context.
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?
The description is well-structured with clear sections (WHEN TO USE, PLATFORM DETECTION, QUERY TIPS, RETURNS, EXAMPLES) and front-loaded with the core purpose. While comprehensive, some sections could be more concise, and every sentence appears to earn its place by providing distinct value.
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?
Given no annotations and no output schema, the description provides substantial context: purpose, usage guidelines, behavioral traits, query examples, and return format details. It covers the complexity of a multi-domain search tool well, though doesn't explicitly mention error conditions or pagination behavior for the results.
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%, so the baseline is 3. The description doesn't add specific parameter details beyond what's in the schema (query and max_results), though it provides query tips ('Use natural language describing your design goal') that offer semantic guidance for the query parameter without contradicting the schema.
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?
The description explicitly states the tool performs 'unified search across ALL design domains' and lists 10 specific resource types (styles, colors, typography, etc.), providing a specific verb+resource combination. It clearly distinguishes from siblings by being the 'DEFAULT tool for broad queries' versus domain-specific tools like search_components or search_styles.
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 includes a dedicated 'WHEN TO USE' section that explicitly states: 'DEFAULT tool for broad queries. Use when unsure which specific tool, or need multi-domain results.' This provides clear guidance on when to use this tool versus its domain-specific siblings, with explicit alternatives implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_componentsA
Search UI components: Lucide icons (176+) and chart types (37+) for data visualization.
WHEN TO USE: Finding icons for UI, selecting chart types for data.
TYPE FILTER (optional): icon | chart
RETURNS: Icon import codes with JSX, chart recommendations with library suggestions.
EXAMPLES: "user profile settings icon", "time series data chart", "analytics dashboard"
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for UI components | |
| type | No | Filter to icons or charts | |
| max_results | No | Maximum number of results to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions what the tool returns (icon import codes with JSX, chart recommendations with library suggestions) and includes examples, but lacks details on permissions, rate limits, or error handling. It adds some behavioral context but not comprehensively.
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?
The description is well-structured with clear sections (description, when to use, type filter, returns, examples), front-loaded with key information, and every sentence adds value without redundancy. It's appropriately sized for the tool's complexity.
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?
Given no annotations and no output schema, the description does a good job explaining the tool's purpose, usage, and returns. It covers the essential context for a search tool with examples, but could improve by detailing output format or error cases more explicitly. It's mostly complete for its 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%, so the schema already documents all parameters well. The description adds minimal value by mentioning the 'TYPE FILTER' and 'RETURNS' sections, but doesn't provide additional syntax or format details beyond what the schema offers. Baseline 3 is appropriate as the schema does the heavy lifting.
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?
The description clearly states the tool searches for UI components, specifically Lucide icons (176+) and chart types (37+), distinguishing it from siblings like search_patterns or search_styles by focusing on icons and charts for data visualization. It uses specific verbs ('search') and resources ('UI components') with explicit scope.
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 includes an explicit 'WHEN TO USE' section that states 'Finding icons for UI, selecting chart types for data,' providing clear guidance on when to use this tool. It differentiates from siblings by focusing on icons and charts, though it doesn't name alternatives explicitly, the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_patternsA
Search design patterns: landing page layouts (60+), UX guidelines (130+), product type recommendations (117+).
WHEN TO USE: Page layouts, UX best practices, accessibility, navigation patterns.
TYPE FILTER (optional): layout | ux | product
RETURNS: Section structures, do/don't practices, conversion tips, code examples.
EXAMPLES: "hero section with CTA", "form validation best practices", "e-commerce product page"
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for design patterns | |
| type | No | Filter to layout, ux, or product | |
| max_results | No | Maximum number of results to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes what the tool returns (section structures, do/don't practices, conversion tips, code examples) and provides examples of search queries. However, it doesn't mention potential limitations like rate limits, authentication requirements, or pagination behavior, which would be helpful for a search tool.
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?
The description is well-structured with clear sections (purpose, when to use, type filter, returns, examples) and every sentence adds value. It's appropriately sized for the tool's complexity, with no redundant information, and is front-loaded with the core purpose.
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 search tool with no output schema, the description does a good job explaining what the tool returns and providing examples. However, without annotations and with no output schema, it could benefit from more detail about the return format structure or error conditions. The combination of purpose, usage guidelines, and return description makes it mostly complete for this context.
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%, so the schema already fully documents all three parameters. The description adds minimal value beyond the schema by mentioning the TYPE FILTER options and providing example queries, but doesn't explain parameter interactions or provide additional semantic context that isn't already in the schema descriptions.
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?
The description clearly states the tool searches design patterns with specific categories (landing page layouts, UX guidelines, product type recommendations) and includes quantitative counts (60+, 130+, 117+). It distinguishes from siblings like search_components or search_platforms by focusing specifically on design patterns rather than components, platforms, or other search types.
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 explicitly includes a 'WHEN TO USE' section listing specific contexts: page layouts, UX best practices, accessibility, and navigation patterns. This provides clear guidance on when this tool is appropriate versus alternatives, helping the agent choose between this and sibling tools like search_components or search_all.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_platformsA
Search iOS Human Interface Guidelines or Android Material 3 design patterns specifically.
WHEN TO USE: iOS design patterns, SwiftUI style in Flutter, Material 3 patterns in React Native, platform-specific UI/UX.
RETURNS: Platform-specific patterns with cross-platform implementation code (Flutter_Equiv, RN_Equiv).
PARAMETERS:
query: Search query (e.g., 'button colors navigation')
platform_name: 'ios' or 'android' (optional, searches all if omitted)
max_results: Number of results (default 5)
EXAMPLES: "ios navigation patterns", "android material button", "swiftui style flutter", "ios safe area", "material 3 color system"
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for platform patterns | |
| platform_name | No | Platform to search (ios or android). If omitted, searches all platforms. | |
| max_results | No | Maximum number of results to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes what the tool returns (platform-specific patterns with cross-platform implementation code) and provides examples of search queries. However, it doesn't mention potential limitations like rate limits, authentication requirements, or error conditions.
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?
The description is well-structured with clear sections (description, when to use, returns, parameters, examples) and uses bullet points effectively. While comprehensive, it could be slightly more concise by integrating some sections more tightly.
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 search tool with 3 parameters and no output schema, the description provides good context about what it searches, when to use it, what it returns, and includes helpful examples. The main gap is the lack of output format details, but the description compensates well with the 'RETURNS' section explaining the content structure.
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%, so the schema already documents all parameters thoroughly. The description lists parameters but doesn't add meaningful semantic context beyond what's in the schema. The baseline of 3 is appropriate when the schema does the heavy lifting.
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?
The description clearly states the tool searches iOS Human Interface Guidelines or Android Material 3 design patterns, specifying both the resources (platform guidelines) and the scope (design patterns). It distinguishes from siblings by focusing specifically on platform-specific patterns rather than general design systems, components, or styles.
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 includes an explicit 'WHEN TO USE' section that lists specific scenarios: iOS design patterns, SwiftUI style in Flutter, Material 3 patterns in React Native, and platform-specific UI/UX. This provides clear guidance on when to use this tool versus its siblings like search_components or search_styles.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_stackA
Search framework-specific guidelines for: flutter, jetpack-compose, html-tailwind, nextjs, nuxt-ui, nuxtjs, react-native, react, shadcn, svelte, swiftui, vue.
WHEN TO USE: Framework-specific patterns, component best practices, state management.
QUERY TIPS: Include framework name AND topic.
RETURNS: Category, Guideline, Description, Do/Don't, Code Examples, Severity, Docs URL.
EXAMPLES: "react state management", "flutter animation", "swiftui navigation"
| Name | Required | Description | Default |
|---|---|---|---|
| stack_name | Yes | Framework/stack name | |
| query | Yes | Search query for guidelines | |
| max_results | No | Maximum number of results to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by detailing what the tool returns (Category, Guideline, Description, Do/Don't, Code Examples, Severity, Docs URL) and providing query examples. It doesn't mention rate limits, authentication needs, or pagination behavior, but covers the core functionality comprehensively.
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?
The description is perfectly structured with clear sections (purpose, when to use, query tips, returns, examples), each earning its place. It's front-loaded with the core purpose, uses bullet-like formatting for readability, and contains zero wasted words while being comprehensive.
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 search tool with no output schema and no annotations, the description does an excellent job covering purpose, usage, parameters, and return format. The only minor gap is lack of explicit mention of error cases or what happens when no results are found, but otherwise it's highly complete given the context.
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%, so the schema already documents all three parameters well. The description adds value through 'QUERY TIPS' that clarifies how to structure the query parameter and 'EXAMPLES' that show parameter usage, but doesn't provide additional semantic context beyond what's in the schema. Baseline 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?
The description clearly states the tool searches for framework-specific guidelines, listing all 12 supported frameworks explicitly. It distinguishes from siblings by specifying 'framework-specific guidelines' rather than general patterns, components, or platforms covered by other tools like search_patterns or search_components.
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 includes a dedicated 'WHEN TO USE' section that explicitly states 'Framework-specific patterns, component best practices, state management.' It also provides 'QUERY TIPS' instructing to include framework name AND topic, giving clear guidance on when and how to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_stylesA
Search visual design elements: UI styles (70+), color palettes (100+), typography pairings (70+), and AI prompts (40+).
WHEN TO USE: Visual aesthetics, color schemes, font choices, CSS effects, design tokens.
DOMAIN FILTER (optional): style | color | typography | prompt
RETURNS: Style CSS code, color hex values with Tailwind config, font pairings with Google Fonts imports.
EXAMPLES: "glassmorphism dark mode", "fintech blue palette", "modern sans-serif pairing"
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for visual design | |
| domain | No | Filter to specific domain | |
| max_results | No | Maximum number of results to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by specifying what the tool returns (Style CSS code, color hex values with Tailwind config, font pairings with Google Fonts imports) and providing examples. It doesn't mention rate limits, authentication needs, or destructive behavior, but covers core functionality adequately.
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?
The description is well-structured with clear sections (purpose, usage, domain filter, returns, examples), front-loaded with key information, and every sentence adds value without redundancy. It efficiently communicates necessary details in a compact format.
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?
Given no annotations and no output schema, the description does a good job covering purpose, usage, parameters, and return values. It could improve by mentioning potential limitations or error cases, but it's largely complete for a search tool with moderate 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%, so the baseline is 3. The description adds value by explaining the optional 'domain' parameter with its filter options (style, color, typography, prompt) and clarifying what the tool searches for, enhancing understanding beyond the schema's technical definitions.
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?
The description explicitly states the tool searches for specific visual design elements (UI styles, color palettes, typography pairings, AI prompts) with concrete counts, making the purpose clear and specific. It distinguishes from siblings by focusing on visual aesthetics rather than broader design systems, components, or platforms.
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 includes a dedicated 'WHEN TO USE' section listing specific scenarios (visual aesthetics, color schemes, font choices, CSS effects, design tokens), providing explicit guidance on when to use this tool. It implicitly differentiates from siblings by not covering their domains like components or platforms.
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. Dates show when Glama detected each change.
7 tool updates
v1.5.0- First observed
get_design_system - First observed
search_all - First observed
search_components - First observed
search_patterns - First observed
search_platforms - First observed
search_stack - First observed
search_styles
TDQS
The tools have some overlap in functionality, particularly between search_all and the more specific search tools (search_components, search_patterns, search_platforms, search_stack, search_styles). While each tool has a distinct primary focus, an agent might be confused about when to use search_all versus the targeted tools, as search_all claims to cover 'ALL design domains' and is the 'DEFAULT tool for broad queries.' This overlap creates ambiguity, though the descriptions help clarify each tool's specific scope.
All tool names follow a consistent verb_noun pattern with snake_case. The tools are named get_design_system, search_all, search_components, search_patterns, search_platforms, search_stack, and search_styles. This uniformity makes the tool set predictable and easy to understand, with no deviations in naming conventions.
With 7 tools, the count is well-scoped for a UI/UX design assistant server. Each tool serves a distinct purpose within the domain, such as generating design systems, searching across various design elements, or targeting specific platforms and frameworks. This number allows for comprehensive coverage without being overwhelming or too sparse.
The tool set covers a broad range of UI/UX design needs, including design system generation, component and pattern searches, platform-specific guidelines, and framework-specific advice. However, there are minor gaps, such as the lack of tools for creating or modifying design elements (e.g., no create_design or update_style tools), which might limit agent workflows that require iterative design changes. Overall, the surface is largely complete for search and retrieval operations in this domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Curated design references for AI β real CSS values, typography specs, and color palettes.
65+ AI tools as MCP: research, write, code, scrape, translate, RAG, agent memory, workflows
UI design from prompts, screenshots, and URLs for AI coding agents and theme tokens.
Build and manage your design system with AI: tokens, themes, components, icons, Figma and code.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceStructured design references from 1,000+ curated websites for AI-powered web design. Retrieve real CSS values, typography specs, color palettes, and design rationale via MCP.1MIT
- AlicenseNot gradedqualityDmaintenanceGive your AI coding agent design taste. 104 curated design seeds with colors, fonts, spacing, and shadows. Query by vibe, brand, or style.43MIT
- AlicenseAqualityAmaintenanceMCP server for Aceternity UI components, enabling AI assistants to discover, search, install, and generate page layouts with 106 components.121MIT
- AlicenseAqualityCmaintenanceProvides 1000+ handcrafted design system themes (colors, typography, components, animations) to inject into AI-generated UI, enabling tools like Claude, ChatGPT, and Cursor to produce polished, non-generic interfaces.2181MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/redf0x1/ui-ux-pro-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server