UX MCP Server
An MCP server that provides comprehensive UX best practices covering accessibility, usability, UI patterns, design systems, performance, and more, enabling clients to analyze and generate UX-optimized code and recommendations.
README
UX MCP Server
Model Context Protocol (MCP) server that provides comprehensive UX best practices covering the complete UX ecosystem: accessibility guidelines (WCAG), usability heuristics (Nielsen), UI patterns, design systems, performance optimization, SEO, internationalization, animation, framework patterns (React/Vue/Angular), e-commerce, testing, PWA, ethical design, SaaS, analytics, voice UI, AR/VR, AI/ML patterns, healthcare, finance, neurodiversity, and web components.
Works with any MCP-compatible client including Claude Desktop, Cursor IDE, Continue.dev, Cline, and custom applications.
Installation
npm (Recommended)
npm install -g @elsahafy/ux-mcp-server
npx (No Installation)
npx @elsahafy/ux-mcp-server
From Source
git clone https://github.com/elsahafy/ux-mcp-server.git
cd ux-mcp-server
npm install
npm run build
Features
📚 Resources (28 Knowledge Bases)
Access comprehensive UX knowledge bases organized by category:
Foundation & Core (12 resources)
- ux://accessibility/wcag - WCAG 2.1 AA Guidelines with code checks
- ux://usability/nielsen-heuristics - Nielsen's 10 Usability Heuristics
- ux://patterns/ui-patterns - Common UI patterns library
- ux://design-systems/principles - Design system principles & primitives
- ux://responsive/design - Responsive design & mobile-first principles
- ux://themes/dark-mode - Dark mode implementation guide
- ux://content/error-messages - User-friendly error message library
- ux://performance/optimization - Core Web Vitals & performance best practices
- ux://seo/guidelines - SEO best practices, meta tags, structured data
- ux://i18n/patterns - Internationalization & localization patterns
- ux://animation/motion - Motion design principles & accessibility
- ux://react/patterns - Advanced React patterns & state management
Critical Features (8 resources)
- ux://forms/patterns - Comprehensive form design, validation & accessibility
- ux://microcopy/guidelines - UX writing, button labels, error messages & tone
- ux://typography/systems - Type scales, font pairing, readability & responsive typography
- ux://color/theory - Color harmony, WCAG contrast, semantic colors & palettes
- ux://mobile/patterns - Touch targets, gestures, thumb zones & mobile-first design
- ux://vue/patterns - Vue 3 Composition API, composables, Pinia & best practices
- ux://angular/patterns - Angular standalone components, signals, RxJS & DI
- ux://data/visualization - Chart selection, accessibility, D3.js & dashboard design
Advanced Features (8 resources)
- ux://ecommerce/patterns - Product pages, checkout, conversion & trust optimization
- ux://information-architecture/patterns - IA systems, navigation, card sorting & tree testing
- ux://testing/validation - Usability testing, A/B testing, surveys & analytics
- ux://pwa/patterns - Service workers, offline-first, app manifest & progressive enhancement
- ux://ethical-design/patterns - Dark patterns, privacy, GDPR/CCPA & ethical alternatives
- ux://design-systems/advanced - Semantic tokens, theming, versioning & governance
- ux://saas/patterns - Onboarding, pricing UX, activation metrics & retention
- ux://analytics/metrics - UX metrics (HEART, AARRR), SUS, NPS & statistical analysis
Emerging Technologies (8 resources)
- ux://voice/interface - Voice UI design, conversation patterns, VUI principles
- ux://ar-vr/interfaces - Spatial UI, comfort, presence, 6DOF & AR anchoring
- ux://ai-ml/patterns - AI transparency, confidence indicators, recommendations & ethics
- ux://haptic/feedback - Haptic types, timing patterns & platform APIs
- ux://healthcare/ux - HIPAA compliance, patient safety, medical UI & telemedicine
- ux://finance/ux - PCI-DSS, 2FA, transaction flows & fintech patterns
- ux://neurodiversity/design - ADHD, autism, dyslexia accommodations & cognitive accessibility
- ux://web-components/patterns - Custom elements, Shadow DOM, Lit, Stencil & encapsulation
🛠️ Tools (23 Dynamic Operations)
Powerful tools for UX analysis and generation:
Core Analysis (11 tools)
- analyze_accessibility - Check code for WCAG violations
- review_usability - Evaluate against Nielsen's heuristics
- suggest_pattern - Find appropriate UI patterns for use cases
- generate_component_example - Create accessible HTML/CSS examples
- audit_design_system - Review design token structure
- check_contrast - Verify WCAG color contrast ratios
- check_responsive - Analyze mobile-first and responsive design
- suggest_error_message - Get user-friendly error messages
- analyze_performance - Check code for performance issues & Core Web Vitals
- check_seo - Analyze HTML for SEO best practices
- suggest_animation - Recommend animations for UI interactions
Design & Content (5 tools) 12. generate_color_palette - Create accessible color palettes from base colors 13. generate_typography_scale - Generate type scales with modular ratios 14. suggest_microcopy - Get UX writing recommendations for UI elements 15. recommend_form_pattern - Find optimal form layouts and validation patterns 16. suggest_data_visualization - Choose appropriate charts for data types
Testing & Validation (5 tools) 17. generate_accessibility_report - Comprehensive WCAG audit reports 18. suggest_ab_variant - Generate A/B test variant suggestions 19. analyze_information_architecture - Evaluate navigation and IA structure 20. detect_dark_patterns - Identify deceptive UI practices 21. calculate_ux_metrics - Calculate SUS, NPS, CSAT, task success rates
UI Generation (2 tools) 22. generate_wireframe - Create ASCII wireframes for pages/components 23. suggest_microinteraction - Recommend microinteractions with timing/easing
💬 Prompts (4 Pre-configured Workflows)
Comprehensive review workflows:
- accessibility_review - Full WCAG accessibility audit
- usability_audit - Complete Nielsen heuristics evaluation
- design_system_setup - Guide for creating design systems
- complete_ux_audit - Comprehensive multi-dimensional UX audit (accessibility, usability, performance, responsive design, typography, color, forms, SEO)
Compatibility
This MCP server works with any client that supports the Model Context Protocol:
| Client | Status | Configuration |
|---|---|---|
| Claude Desktop | ✅ Fully Supported | See below |
| Claude Code (CLI) | ✅ Fully Supported | See below |
| Cursor IDE | ✅ Fully Supported | See below |
| Continue.dev | ✅ Fully Supported | See below |
| Cline (VS Code) | ✅ Fully Supported | See below |
| Zed Editor | ✅ Fully Supported | See below |
| Custom MCP Clients | ✅ Fully Supported | See below |
Client Configuration
Claude Desktop
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ux-best-practices": {
"command": "ux-mcp-server"
}
}
}
From source:
{
"mcpServers": {
"ux-best-practices": {
"command": "node",
"args": ["/absolute/path/to/ux-mcp-server/dist/index.js"]
}
}
}
Restart Claude Desktop after configuration.
Claude Code (CLI)
Add via the CLI (recommended):
claude mcp add ux -- npx -y @elsahafy/ux-mcp-server
Or manually in ~/.claude/settings.json:
{
"mcpServers": {
"ux": {
"command": "npx",
"args": ["-y", "@elsahafy/ux-mcp-server"]
}
}
}
Cursor IDE
Add to Cursor's MCP configuration (~/.cursor/mcp.json):
{
"mcpServers": {
"ux-best-practices": {
"command": "ux-mcp-server"
}
}
}
Or configure via Cursor Settings → MCP Servers → Add Server.
Continue.dev
Add to Continue configuration (~/.continue/config.json):
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "ux-mcp-server"
}
}
]
}
}
Cline (VS Code)
In VS Code with Cline extension, add to MCP settings:
{
"mcpServers": {
"ux-best-practices": {
"command": "ux-mcp-server",
"args": []
}
}
}
Zed Editor
Add to Zed's settings (~/.config/zed/settings.json):
{
"context_servers": {
"ux-best-practices": {
"command": {
"path": "ux-mcp-server"
}
}
}
}
Custom MCP Clients
For custom applications using the MCP SDK:
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const transport = new StdioClientTransport({
command: "ux-mcp-server",
args: []
});
const client = new Client({
name: "my-app",
version: "1.0.0"
}, {
capabilities: {}
});
await client.connect(transport);
// List available resources
const resources = await client.listResources();
// Read a resource
const wcag = await client.readResource({ uri: "ux://accessibility/wcag" });
// Call a tool
const result = await client.callTool({
name: "check_contrast",
arguments: { foreground: "#333333", background: "#ffffff" }
});
Windows Notes
On Windows, use full paths with escaped backslashes:
{
"mcpServers": {
"ux-best-practices": {
"command": "node",
"args": ["C:\\Users\\YourName\\ux-mcp-server\\dist\\index.js"]
}
}
}
Example Usage
Once configured, you can ask your AI assistant to use these UX tools and resources. Here are some example prompts:
Accessibility Analysis
"Analyze this button for accessibility issues"
→ Uses: analyze_accessibility tool
"Check if #3b82f6 on #ffffff meets WCAG AA contrast requirements"
→ Uses: check_contrast tool
"Generate an accessibility audit report for my login page"
→ Uses: generate_accessibility_report tool
UI Patterns & Design
"I need to display a list of items with filtering - what UI pattern should I use?"
→ Uses: suggest_pattern tool
"Generate an accessible modal dialog example"
→ Uses: generate_component_example tool
"Create a color palette based on #3b82f6"
→ Uses: generate_color_palette tool
"Generate a wireframe for a dashboard page"
→ Uses: generate_wireframe tool
Performance & SEO
"Analyze this React component for performance issues"
→ Uses: analyze_performance tool (checks Core Web Vitals, bundle size, loading patterns)
"Review this HTML page for SEO best practices"
→ Uses: check_seo tool (validates meta tags, Open Graph, structured data)
UX Writing & Forms
"Suggest better microcopy for this error message"
→ Uses: suggest_microcopy tool
"What form pattern should I use for a multi-step checkout?"
→ Uses: recommend_form_pattern tool
Animation & Interaction
"What animation should I use for a button click?"
→ Uses: suggest_animation tool
"Suggest microinteractions for a toggle switch"
→ Uses: suggest_microinteraction tool
Testing & Metrics
"Calculate the SUS score from these survey responses"
→ Uses: calculate_ux_metrics tool
"Suggest A/B test variants for my pricing page"
→ Uses: suggest_ab_variant tool
"Check this page for dark patterns"
→ Uses: detect_dark_patterns tool
Accessing Knowledge Resources
"What are Nielsen's usability heuristics?"
→ Reads: ux://usability/nielsen-heuristics
"Show me WCAG accessibility guidelines"
→ Reads: ux://accessibility/wcag
"What are best practices for e-commerce checkout?"
→ Reads: ux://ecommerce/patterns
"How do I design for neurodiversity?"
→ Reads: ux://neurodiversity/design
Knowledge Base Contents
WCAG Guidelines
- Perceivable (alt text, contrast, semantic HTML)
- Operable (keyboard access, focus management)
- Understandable (error handling, clear labels)
- Robust (ARIA, assistive technology support)
Nielsen's Heuristics
- Visibility of System Status
- Match Between System and Real World
- User Control and Freedom
- Consistency and Standards
- Error Prevention
- Recognition Rather than Recall
- Flexibility and Efficiency of Use
- Aesthetic and Minimalist Design
- Help Users Recognize, Diagnose, and Recover from Errors
- Help and Documentation
UI Patterns
- Navigation: Headers, breadcrumbs, tabs
- Forms: Single column, multi-step wizards, validation
- Feedback: Toasts, modals, loading states
- Data Display: Tables, cards, empty states
- Input Components: Search, date pickers, file upload
Design System Principles
- Atomic Design methodology
- Design token structure (primitive → semantic → component)
- Typography scales
- Spacing systems
- Color theory
- Component API design
Performance Optimization
- Core Web Vitals (LCP, INP, CLS)
- Image optimization strategies
- CSS performance
- JavaScript bundle optimization
- Lazy loading & code splitting
- Caching strategies
- Performance budgets
SEO Best Practices
- Meta tags (title, description, keywords)
- Open Graph protocol
- Twitter Cards
- Structured data (JSON-LD, Schema.org)
- Technical SEO (robots.txt, sitemap, canonical)
- Local SEO & rich snippets
Internationalization (i18n)
- Text direction (LTR/RTL support)
- Locale-aware formatting (dates, numbers, currencies)
- Translation patterns
- Cultural considerations
- Font and character set handling
- URL structures for multilingual sites
Animation & Motion Design
- Disney's 12 principles of animation
- Timing and easing functions
- Motion design principles
- Performance (GPU acceleration)
- Accessibility (prefers-reduced-motion)
- Common UI animation patterns
React Patterns
- Compound components
- Custom hooks
- State management strategies
- Performance optimization (memoization, code splitting)
- Error boundaries
- Accessibility patterns in React
- Testing best practices
Forms & Microcopy
- Form layouts (single-column, multi-step wizards)
- Validation patterns (inline, submit, hybrid)
- Accessible form fields & error handling
- UX writing principles (clarity, tone, voice)
- Button labels & CTAs
- User-friendly error messages
Typography & Color Systems
- Type scales with modular ratios (1.2, 1.333, 1.618)
- Font pairing strategies
- Readability optimization (line length, spacing)
- Color harmony (complementary, triadic, analogous)
- WCAG contrast compliance (4.5:1, 3:1, 7:1)
- Semantic color tokens
Mobile & Framework Patterns
- Touch targets (44x44px minimum)
- Gestures & thumb zones
- Bottom navigation patterns
- Vue 3 Composition API & composables
- Angular signals & standalone components
- Framework-agnostic best practices
E-commerce & Conversion
- Product discovery (mega menus, faceted filters)
- Product detail pages & variant selection
- Shopping cart patterns (drawer vs page)
- Checkout optimization (multi-step with progress)
- Trust signals & abandoned cart recovery
Testing & Analytics
- Usability testing (moderated/unmoderated/guerrilla)
- A/B testing methodology & statistical significance
- UX metrics (SUS, NPS, CSAT, CES)
- HEART framework & AARRR pirate metrics
- Accessibility testing (automated & manual)
PWA & Ethical Design
- Service workers & caching strategies
- Offline-first patterns
- Web app manifest & add to home screen
- Dark pattern detection & ethical alternatives
- GDPR/CCPA compliance
- Privacy-first design
SaaS & Advanced Design Systems
- Onboarding flows & activation metrics
- Pricing UX (freemium, trial, usage-based)
- Semantic design tokens (3-tier architecture)
- Multi-brand theming
- Component versioning & governance
Emerging Technologies
- Voice UI conversation design & VUI principles
- AR/VR spatial interfaces & comfort optimization
- AI/ML transparency & confidence indicators
- Haptic feedback timing & platform APIs
- Healthcare UX (HIPAA, patient safety)
- Finance UX (PCI-DSS, 2FA, transaction flows)
- Neurodiversity-inclusive design (ADHD, autism, dyslexia)
- Web Components (Custom Elements, Shadow DOM, Lit)
Development
# Watch mode during development
npm run watch
# Build for production
npm run build
# Test the server
npm run dev
Framework Agnostic
All examples and guidelines are framework-agnostic, focusing on:
- Semantic HTML
- CSS best practices
- ARIA attributes
- Accessibility standards
- Universal UX principles
Works with React, Vue, Svelte, Angular, or vanilla JavaScript.
What's New in v5.0.0
Security Hardening
- Resolved all AgentSeal security findings (command injection, SSRF, credential exposure)
- Added
maxLengthconstraints on markup-accepting parameters - Explicit MCP capability declarations
Bug Fix
- Fixed
console.errorstartup message that broke MCP client connections on Windows
CI/CD
- GitHub Actions pipeline: build matrix (Node 18/20/22), TypeScript strict checking, security audit
- Branch protection with required status checks
Breaking Changes
Parameter renames for security compliance — see CHANGELOG.md for the full migration guide.
| Tool | Old Parameter | New Parameter |
|---|---|---|
analyze_accessibility |
code |
content |
review_usability |
code |
content |
check_responsive |
code |
content |
analyze_performance |
code |
content |
check_seo |
url |
page_url |
generate_accessibility_report |
url |
page_identifier |
detect_dark_patterns |
screenshot_url |
screenshot_reference |
See the full changelog for previous versions.
Contributing
We welcome contributions! Please see our Contributing Guide for details on:
- Development setup
- Adding new resources, tools, or prompts
- Coding standards
- Pull request process
Quick Start:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
Security
For security vulnerabilities, please see our Security Policy.
Changelog
See CHANGELOG.md for a detailed history of changes.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support This Project
If this project helps you build better user experiences, consider supporting its development:
Your support helps:
- Maintain and update UX knowledge bases
- Add new tools and resources
- Keep documentation current
- Respond to issues and feature requests
Enterprise users: For priority support, custom integrations, or consulting, contact us.
Credits
- WCAG 2.1 Guidelines from W3C
- Nielsen's Usability Heuristics by Jakob Nielsen
- UI Patterns from established design systems and best practices
- Design Token concepts from design system community
- Core Web Vitals from Google Web.dev
- SEO best practices from Google Search Central
- Animation principles from Disney and Material Design
- React, Vue, Angular patterns from framework communities
- i18n standards from Unicode CLDR and W3C
- E-commerce patterns from Baymard Institute research
- Information Architecture from Rosenfeld & Morville
- PWA standards from W3C and Google
- Ethical design principles from darkpatterns.org
- UX metrics from HEART Framework (Google) and industry standards
- Voice UI design from Amazon Alexa, Google Assistant guidelines
- AR/VR best practices from Oculus, Meta, and Apple Vision Pro
- AI/ML ethics from Partnership on AI and industry practices
- HIPAA compliance from HHS.gov
- PCI-DSS standards from PCI Security Standards Council
- Neurodiversity guidelines from ADHD Foundation, National Autistic Society, British Dyslexia Association
- Web Components standards from W3C and web.dev
Links
- npm Package: https://www.npmjs.com/package/@elsahafy/ux-mcp-server
- GitHub Repository: https://github.com/elsahafy/ux-mcp-server
- Issues & Feedback: https://github.com/elsahafy/ux-mcp-server/issues
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Security Policy: SECURITY.md
Built for AI-assisted development with complete UX ecosystem coverage: accessibility, usability, performance, SEO, design systems, e-commerce, testing, ethical design, emerging technologies (Voice/AR/VR/AI), healthcare, finance, neurodiversity, and more—all as first-class citizens.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。