UI Analyzer MCP Server

UI Analyzer MCP Server

Analyzes website UIs using Playwright and provides precise CSS/HTML fix instructions for AI coding assistants like GitHub Copilot and Cursor.

Category
访问服务器

README

UI Analyzer MCP Server

License: MIT Python 3.13+ MCP

An MCP (Model Context Protocol) server that analyzes website UIs and provides precise fix instructions for AI coding assistants. Designed to solve the problem of "messy UI updates" when using agentic code IDEs like GitHub Copilot or Cursor.

Features

  • Live UI Analysis - Renders and inspects actual websites using Playwright
  • Smart Query Interpretation - Understands vague complaints like "navbar is broken"
  • Precise Fix Instructions - Generates specific CSS selectors and property changes
  • Technology Detection - Identifies React, Vue, Angular, Next.js, Tailwind, Bootstrap, and more
  • Responsive Testing - Compare UIs across mobile, tablet, and desktop viewports
  • Accessibility Analysis - Extracts accessibility tree for semantic understanding

The Problem

When using AI coding assistants to build or update website UIs, the results can sometimes be messy:

  • Layout breaks unexpectedly
  • Elements overlap or misalign
  • Spacing becomes inconsistent
  • Responsive design breaks

Users often struggle to describe exactly what's wrong, saying things like "the navbar is broken" or "the hero section looks weird" - vague descriptions that don't help the AI understand what specific CSS or HTML changes are needed.

The Solution

This MCP server bridges that gap by:

  1. Analyzing the live website - Using Playwright to render and inspect the actual UI
  2. Detecting technology stack - Identifying frameworks (React, Next.js, Vue) and CSS libraries (Tailwind, Bootstrap)
  3. Identifying UI elements - Finding navbars, headers, footers, heroes, buttons, forms, etc.
  4. Detecting issues - Spotting layout problems, overflow, z-index conflicts, accessibility issues
  5. Interpreting vague queries - Understanding what "the header is messed up" actually means
  6. Generating framework-aware fix instructions - Providing specific CSS selectors, property changes, and code snippets tailored to the detected tech stack

Installation

Prerequisites

  • Python 3.13 or higher
  • uv package manager

Setup

# Clone the repository
git clone https://github.com/0x-Professor/UIAnalyzerMCP.git
cd UIAnalyzerMCP

# Install dependencies
uv sync

# Install Playwright browsers
uv run playwright install chromium

Usage

Running the Server

# Run directly
uv run python server.py

# Or use the MCP CLI
uv run mcp run server.py

# For development with inspector
uv run mcp dev server.py

VS Code / GitHub Copilot Configuration

Add to your VS Code settings.json or MCP configuration:

{
  "mcpServers": {
    "ui-analyzer": {
      "command": "uv",
      "args": ["run", "python", "server.py"],
      "cwd": "/path/to/UIAnalyzerMCP"
    }
  }
}

Cursor IDE Configuration

Add to your Cursor MCP settings (~/.cursor/mcp.json or project .cursor/mcp.json):

{
  "mcpServers": {
    "ui-analyzer": {
      "command": "uv",
      "args": ["run", "python", "server.py"],
      "cwd": "/path/to/UIAnalyzerMCP"
    }
  }
}

Claude Desktop Configuration

Add to your Claude Desktop config file:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "ui-analyzer": {
      "command": "uv",
      "args": ["run", "python", "server.py"],
      "cwd": "C:\\path\\to\\UIAnalyzerMCP"
    }
  }
}

Available Tools (8 Total)

Tool Description
analyze_page Full UI analysis with elements, issues, and screenshot
get_fix_instructions Generate precise fix instructions from vague complaints
get_screenshot Capture screenshots with optional element highlighting
get_element_details Get detailed info about specific element types
get_accessibility_snapshot Extract accessibility tree in YAML format
get_dom_overview Get simplified DOM structure overview
compare_viewports Compare UI at mobile, tablet, and desktop sizes
get_tech_stack Detect frameworks, libraries, and CSS approach

analyze_page

Full UI analysis of a webpage. Returns elements, issues, accessibility tree, DOM structure, and screenshot.

analyze_page(url="http://localhost:3000", query="the navbar is broken")

get_fix_instructions

The main tool for fixing messy UIs. Interprets vague user complaints and generates precise fix instructions.

get_fix_instructions(
    url="http://localhost:3000",
    user_complaint="the hero section looks weird and buttons are not aligned"
)

Returns:

  • Interpreted problem description
  • Affected elements with CSS selectors
  • Ordered fix instructions with property changes
  • Complete CSS changes to apply
  • Additional recommendations

get_screenshot

Capture a screenshot with optional element highlighting.

get_screenshot(url="http://localhost:3000", element_type="navbar")
get_screenshot(url="http://localhost:3000", highlight_selector=".hero-section")

get_element_details

Get detailed information about specific UI element types.

get_element_details(url="http://localhost:3000", element_type="button")

get_accessibility_snapshot

Get the accessibility tree in YAML format for understanding semantic structure.

get_accessibility_snapshot(url="http://localhost:3000")

get_dom_overview

Get a simplified DOM structure overview.

get_dom_overview(url="http://localhost:3000", max_depth=5)

compare_viewports

Compare the UI at different screen sizes to identify responsive issues.

compare_viewports(url="http://localhost:3000")

get_tech_stack

Detect the technology stack (frameworks, libraries, CSS approach) used on a webpage. Returns framework-specific fix guidance.

get_tech_stack(url="http://localhost:3000")

Returns:

  • Primary framework (React, Vue, Angular, Svelte, etc.)
  • Meta framework (Next.js, Nuxt, Remix, Gatsby, Astro)
  • CSS approach (Tailwind, Bootstrap, CSS Modules, styled-components)
  • UI libraries (shadcn/ui, Material UI, Chakra UI, Ant Design)
  • Framework-specific fix recommendations

Supported Technology Detection

JavaScript Frameworks

  • React, Vue, Angular, Svelte, Solid, Preact
  • jQuery, Alpine.js, HTMX

Meta Frameworks

  • Next.js, Nuxt, Remix, Gatsby, Astro, SvelteKit, Vite

CSS Frameworks & Libraries

  • Tailwind CSS, Bootstrap, Bulma, Foundation
  • shadcn/ui, Material UI, Chakra UI, Ant Design, Radix UI

CSS Approaches

  • CSS Modules, styled-components, Emotion
  • Inline styles, CSS variables, Sass/SCSS

Example Workflow

  1. User runs their dev server: npm run dev

  2. User tells the AI: "The navbar is messed up and the hero section has weird spacing"

  3. AI uses get_fix_instructions:

get_fix_instructions(
    url="http://localhost:3000",
    user_complaint="The navbar is messed up and the hero section has weird spacing"
)
  1. Server returns precise instructions:
Interpreted Problem: User is reporting alignment, spacing issues with the navbar, hero

Affected Elements:
- nav.navbar (selector: nav.navbar)
- section.hero (selector: .hero-section)

Fix Instructions:

1. Fix spacing on navbar
   Selector: nav.navbar
   CSS Changes:
   - padding: 1rem 2rem
   - gap: 1rem
   - align-items: center

2. Fix spacing on hero
   Selector: .hero-section
   CSS Changes:
   - padding: 4rem 2rem
   - margin: 0 auto
   - max-width: 1200px
  1. AI applies the exact CSS changes to the codebase

Supported UI Elements

The analyzer can identify and analyze:

  • navbar - Navigation bars, menus
  • header - Page headers, banners
  • footer - Page footers
  • hero - Hero sections, splash areas
  • button - Buttons, CTAs
  • link - Anchor links
  • heading - H1-H6 headings
  • form - Forms and form containers
  • input - Input fields, textareas, selects
  • card - Card components, panels
  • sidebar - Side navigation, asides
  • modal - Dialogs, popups
  • dropdown - Dropdown menus, selects
  • image - Images, SVGs
  • section - Content sections
  • container - Main containers, wrappers

Detected Issue Types

  • layout_broken
  • overflow_hidden
  • z_index_conflict
  • spacing_inconsistent
  • alignment_off
  • responsive_issue
  • accessibility_missing
  • contrast_low
  • element_overlap
  • invisible_element
  • empty_container
  • broken_flexbox
  • broken_grid

Development

# Run with MCP inspector for debugging
uv run mcp dev server.py

# Run the test suite
uv run python test_mcp_server.py

Test Coverage:

  • Query interpretation (vague user queries to element types)
  • Page loading across multiple test sites
  • Screenshot capture (full page, viewport, highlighted elements)
  • Accessibility tree extraction
  • DOM structure extraction
  • Element identification by type
  • Issue detection
  • Full page analysis
  • Fix instruction generation
  • Viewport comparison (mobile, tablet, desktop)
  • Technology stack detection

Test artifacts are saved to test_output/ directory:

  • Screenshots at different viewports
  • Accessibility tree YAML
  • DOM structure text
  • Detected elements JSON
  • Analysis results JSON
  • Tech stack detection results

License

MIT License - see LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Acknowledgments

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选