Design Analysis MCP Server
Integrates with OpenAI's vision models to analyze design videos and images, extracting layout, typography, animations, and generating implementation specs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Design Analysis MCP Serveranalyze design from demo.mp4"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Design Analysis MCP Server
An MCP server that reverse-engineers design videos and images into structured frontend implementation specifications. Uses vision LLMs (OpenAI, Anthropic, Gemini) and FFMPEG for frame-level analysis.
Features
11 MCP tools organized into three tiers:
Tool | Purpose |
| Full orchestration — runs all layers + writes files |
| Grid, spacing, composition, hierarchy (no colors/animations) |
| Fonts, type scale, text animations (per-character, stagger) |
| Scroll segments, parallax, sticky detection (video only) |
| Multi-pass: burst-frame capture → find animations → crop + deep-dive |
| Single component with layout hypotheses + alternatives |
| "30-second test" — what makes this distinctive? |
| Side-by-side across layout, typography, animation, accessibility |
| Engineering-focused critique with actionable improvements |
| Complete spec: component tree, tokens, states, a11y |
| Catalog all visual assets (icons, gradients, palette) |
Related MCP server: vidlizer
Architecture
┌─────────────┐
│ MCP Client │ (Claude Code, etc.)
└──────┬──────┘
│ stdio JSON-RPC
┌──────┴──────┐
│ index.ts │ Entry point, registers 11 tools
└──────┬──────┘
│
┌────────────┼────────────┐
│ │ │
┌─────┴─────┐ ┌───┴───┐ ┌─────┴─────┐
│ Tools │ │Vision │ │Analyzers │
│ │ │Client │ │ │
│ analyze_* │ │ │ │ │ video_to_ │
│ reverse_* │ │ ├──Anthropic │ frames │
│ compare_* │ │ ├──OpenAI │ detect_ │
│ critique_ │ │ └──Gemini │ scroll_ │
│ generate_ │ │ │ segments │
│ extract_ │ │ │ images_ │
│ design_ │ │ │ to_pdf │
│ uniqueness│ │ │ analyze_* │
└───────────┘ └────────┘ └───────────┘Layered analysis
The orchestrator (analyze_design) runs layers independently to avoid mode confusion:
Layout — grid system, spacing principles, visual hierarchy
Typography — font categories, type scale, text animation details
Scroll — PSNR-based pixel-shift detection between frames
Motion — multi-pass: find animations → crop region → deep-dive
Uniqueness — "30-second test": what would a designer remember?
Confidence scoring
Every estimate includes confidence: number (0–1) and alternatives: string[] so downstream LLMs can distinguish reliable findings from speculation. Estimates describing what the model can see (movement direction, opacity change) get higher confidence than inferred values (exact CSS properties, easing curves, font names).
Multi-pass animation analysis
Burst capture — 15 FPS for first 3 seconds (captures fast discrete animations like slot-machine effects at 400–800ms)
Pass 1 — find all animations + estimate screen regions
Pass 2 — crop each region and deep-dive with a focused prompt
File-based output
analyze_design writes results to analysis/{name}/:
File | Contents |
| Most memorable elements, confidence report |
| Grid, spacing, composition |
| Fonts, type scale, text animations |
| Animation details |
| Design uniqueness output |
| Design tokens, component specs |
Setup
Prerequisites
Node.js 22+
FFMPEG (for video frame extraction, scroll detection)
At least one API key: OpenAI, Anthropic, or Gemini
Install
git clone <repo>
cd design-analysis-mcp-server
npm installConfigure
Copy .env.example to .env and set at least one API key:
cp .env.example .env
# Edit .env with your API keysOptionally edit config.yaml to change model priority, frame extraction settings, or output directories.
Build
npm run buildAdd to Claude Code
In your ~/.opencode.jsonc:
{
"mcpServers": {
"design-analysis": {
"command": "node",
"args": ["/path/to/design-analysis-mcp-server/build/index.js"],
"env": {
"OPENAI_API_KEY": "sk-...",
"ANTHROPIC_API_KEY": "sk-ant-...",
"GEMINI_API_KEY": "AIza..."
}
}
}
}Usage Examples
# Full analysis of a design video
analyze_design path=/path/to/demo.mp4 name=demo-v1
# Analyze only layout
analyze_layout path=/path/to/screenshot.png
# Reverse-engineer a specific component
reverse_engineer_component path=/path/to/screen.mp4 element_description="hero section with CTA button"
# Multi-pass animation deep-dive
reverse_engineer_animation path=/path/to/demo.mp4 region={x:100,y:200,width:300,height:400}
# Compare two designs
compare_designs referenceA={path:/path/to/v1.mp4,type:video} referenceB={path:/path/to/v2.mp4,type:video}
# Generate implementation spec
generate_implementation_spec path=/path/to/demo.mp4
# 30-second test for design uniqueness
design_uniqueness path=/path/to/demo.mp4Configuration Reference
Config key | Default | Description |
|
| Model priority list; fallback on error |
|
| Standard mode frame interval |
|
| PNG quality (2–31, lower = better) |
|
| PSNR threshold for scene detection |
|
| Max frames in any extraction mode |
|
| Max pages in generated PDFs |
|
| Frames to merge when detecting scroll |
Prompt Philosophy
All analyzer prompts follow a principle-first structure:
What principle does this follow? (high confidence — directly observable)
What mechanism could produce this? (medium confidence — alternatives listed)
What are the estimated values? (low confidence — clearly labeled)
Prompts instruct models to say "uncertain" rather than guess wrong, and to list alternative mechanisms when confidence < 0.8.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Va1bhav512/design-analysis-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server