ui-annotator-mcp
The UI Annotator MCP server acts as a reverse proxy that injects interactive annotations onto web pages, creating a shared visual vocabulary between users and AI assistants for discussing UI elements — no browser extensions or code changes required.
Capabilities:
annotate(url)— Generate a proxy URL for any web page that overlays interactive labels on every element, letting users hover to see element names, CSS selectors, dimensions, and content previews.get_elements()— Retrieve a structured list of all detected UI elements (names, CSS selectors, positions, sizes) so the AI understands exactly which element a user is referencing.highlight_element(name)— Flash-highlight a specific element on the live page by name or selector, visually confirming "is this the element you mean?"rescan_elements()— Force a fresh DOM scan to capture new or changed elements after navigation, dynamic updates, or user interactions.inspect_mode(enabled)— Toggle inspect mode so clicking any element copies its name to the clipboard, making it easy for users to reference exact element names.
Works across all major browsers (Chrome, Firefox, Safari, Edge) with zero configuration.
Identifies and exposes technical CSS selectors for UI elements on any web page, enabling AI assistants to precisely reference specific components for code changes and styling.
Provides a browser-agnostic proxy that enables interactive hover annotations and element inspection within the Firefox browser without requiring extensions.
Enables interactive UI element naming and visual annotations within the Safari browser through a lightweight reverse proxy setup.
UI Annotator MCP
English | 廣東話
Bridge the gap between what you see and what AI can reference — in any browser, zero extensions.
The only tool that puts visible labels on every web element. Hover any element, see its name. Tell your AI assistant "make the sidebar wider" — it knows exactly which element you mean. No screenshots, no CSS selectors, no miscommunication.

Why It Matters
Dramatically improves AI-driven UI design and iteration. The pain: telling AI "move that button next to the search bar" never works because the AI can't see your page. UI Annotator fixes this — hover over any element and its component name appears as a label. Now you say "move SearchButton below NavBar" and Claude edits the right component instantly. No browser extensions, works with any framework. The workflow becomes: open page → hover to identify elements → describe changes using real component names → Claude edits → refresh and repeat. Turns a frustrating back-and-forth into a fluid design loop.
The Problem
When reviewing a web UI with an AI coding assistant, the hardest part isn't the code change — it's describing which element you want changed.
"That thing on the left... the second row... no, the one with the icon..."
You don't know what it's called. The AI doesn't know what you're pointing at. You waste time on miscommunication instead of shipping.
The Solution
Open your page through the annotator proxy. Hover any element — instantly see its name, CSS selector, and dimensions. Now you both speak the same language.
# Start the MCP server
npx @mcpware/ui-annotator
# Open in ANY browser
http://localhost:7077/localhost:3847That's it. No browser extensions. No code changes. No setup. Works in Chrome, Firefox, Safari, Edge — any browser.
How It Works
Your app (localhost:3847)
│
▼
┌─────────────────────┐
│ UI Annotator Proxy │ ← Reverse proxy on port 7077
│ (MCP Server) │
└─────────────────────┘
│
▼
Proxied page with hover annotations injected
│
├──► User sees: hover overlay + tooltip with element names
└──► AI sees: structured element data via MCP toolsThe proxy fetches your page, injects a lightweight annotation script, and serves it back. The script scans the DOM, identifies named elements, and reports them to the MCP server. Your AI assistant queries the server to understand what's on the page.
Features
Hover Annotations
Hover any element to see:
Element name (pink) — the human-readable identifier
CSS selector (monospace) — the technical reference
Content preview — what text the element contains
Dimensions — width × height in pixels
Inspect Mode
Click the Inspect button in the toolbar (or let your AI toggle it). In inspect mode:
Click any element → copies its name to clipboard
All page interactions are paused (clicks don't trigger buttons/links)
Click Inspect again to return to normal mode
Collapsible Toolbar
The toolbar sits at the top center of the page showing:
Inspect toggle button
Element count
Helpful subtitle explaining what to do
Collapse button (▲) to minimize when not needed
MCP Tools for AI
Tool | What it does |
| Returns proxy URL for user to open in any browser |
| Returns all detected UI elements with names, selectors, positions |
| Flash-highlights a specific element so user can confirm |
| Force DOM rescan after page changes |
| Toggle inspect mode remotely |
Why Not Just Use DevTools?
Browser DevTools | UI Annotator | |
Target user | Frontend developers who know the DOM | Anyone — QA, PM, designer, junior dev |
Learning curve | Need to understand DOM tree, CSS selectors, box model | Hover and read — zero learning |
Communication | "The | "The |
Language | CSS/HTML technical terms | Human-readable names |
Setup | Teach people to open DevTools + navigate the DOM | Open a URL |
AI integration | None — AI can't see what you're inspecting | MCP — AI sees the same element names you do |
DevTools is for debugging. UI Annotator is for communication — giving humans and AI a shared vocabulary for UI elements.
Why Not Use Existing Tools?
None of these do what UI Annotator does — live visual labels on every element via reverse proxy:
Tool | Approach | Why we're different |
browser-use (82K⭐) | AI automation framework | Automates browsers, doesn't label elements for humans. Different use case entirely. |
Chrome DevTools MCP (31K⭐) | DOM snapshot + element UIDs | AI can inspect, but humans don't see visual annotations. No shared vocabulary. |
Playwright MCP (29K⭐) | Accessibility tree snapshot | Returns structured text, no visual overlay. Truncates important context. |
OmniParser | Screenshot + CV detection | Screenshot-based, not live DOM. ~40% accuracy on hard benchmarks. |
MCP Pointer (526 users) | Chrome extension + MCP | Requires Chrome extension. Human clicks to select — no hover overlay. |
Agentation | npm embedded in your app | Requires code changes. React 18+ dependency. Not zero-config. |
Vibe Annotations | Chrome extension | Extension-based, developer-only annotation workflow. |
Feature Comparison
Feature | UI Annotator | MCP Pointer | Agentation | Cursor | Chrome DevTools MCP |
Visual hover annotation | Yes | No | Partial | Yes (IDE only) | No |
Shows element names | Yes | Yes | Yes | No (high-level) | Programmatic |
Shows dimensions | Yes | Yes | Yes (Detailed) | Yes | Programmatic |
MCP server | Yes | Yes | Yes | No | Yes |
Zero browser extensions | Yes | No | Yes | N/A | No |
Zero code changes | Yes | Yes | No | N/A | Yes |
Any browser | Yes | Chrome only | Desktop only | Cursor only | Chrome only |
Zero dependencies | Yes | Chrome ext | React 18+ | Cursor | Chrome |
Click to copy element name | Yes | No | No | No | No |
Architecture
Zero external dependencies
Reverse proxy: Node.js built-in
httpmoduleMCP server:
@modelcontextprotocol/sdk(stdio transport)Communication: HTTP POST (browser → server) + GET polling (server → browser)
No WebSocket, no Express, no browser extension
How the proxy works
User requests
localhost:7077/localhost:3847Proxy fetches
http://localhost:3847For HTML responses:
Injects
fetch()/XMLHttpRequestinterceptor (rewrites API paths through proxy)Rewrites
href="/..."andsrc="/..."attributes to route through proxyInjects annotation script before
</body>
For non-HTML (CSS, JS, images): passes through directly
Strips
Content-Security-Policyheaders to allow injected script
How annotation works
Script scans DOM for elements with
id,class, semantic roles, or interactive rolesOn hover: positions overlay border (follows
border-radius) + positions tooltip (always within viewport)Reports all detected elements to server via
POST /__annotator/elementsPolls
GET /__annotator/commandsevery second for server instructions (highlight, rescan, inspect toggle)MutationObserverauto-rescans when DOM changes
Quick Start
With Claude Code
# Add as MCP server
claude mcp add ui-annotator -- npx @mcpware/ui-annotator
# Then in conversation:
# "Annotate my app at localhost:3847"
# → AI returns proxy URL, you open it, hover elements, discuss changes by nameManual
npx @mcpware/ui-annotator
# Proxy starts on http://localhost:7077
# Open http://localhost:7077/localhost:YOUR_PORTEnvironment Variables
Variable | Default | Description |
|
| Port for the proxy server |
More from @mcpware
Project | What it does | Install |
23 Instagram Graph API tools — posts, comments, DMs, stories, analytics |
| |
Visual dashboard for Claude Code memories, skills, MCP servers, hooks |
| |
Record browser sessions as GIF or video via MCP |
| |
AI logo design → SVG → full brand kit export |
|
License
MIT
Latest Blog Posts
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/mcpware/ui-annotator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server