Human-to-AI code review bridge. Review UI in the browser, AI agents fix code via MCP.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Human-to-AI code review bridge. Review UI prototypes directly in the browser, then let AI agents read your feedback and fix the code automatically.
You click on elements, write review comments like "This button should be blue" or "The spacing is wrong here", and your AI coding agent (Claude Code, Codex, Cursor, etc.) picks them up via MCP and resolves them - with full context about which element you pointed at, its CSS, position, and surrounding DOM.
One Python process handles everything - MCP protocol for the agent (stdio) and REST API for the browser UI (HTTP). Reviews are stored in a SQLite database inside your project.
Add to your project's .mcp.json (Claude Code, Codex, Cursor, etc.):
Restart the agent. uvx downloads and runs the package automatically - no manual install needed.
Alternative:
pip install ui-ticket-mcp, then use"command": "ui-ticket-mcp"instead ofuvx.
When the MCP server starts, it also launches a REST API on http://localhost:3200 (or your custom REVIEW_PORT) for the browser UI.
Important: The API always runs locally (
localhost). The websitehttps://uiticket.0ics.ai/is the landing page only β it is NOT an API endpoint. Always usehttp://localhost:{PORT}/apias theapi-url.
In your app's entry file (e.g. main.ts, index.tsx):
Then in your root template:
That's it. Works in any framework - Angular, React, Vue, Svelte, or plain HTML. It's a standard Web Component. For SSR frameworks (Next.js, Nuxt, SvelteKit) see the Framework Examples section β you need a dynamic import on the client side.
The bundle auto-registers the <review-panel> element. No npm install, no build step needed.
Open your app in the browser. You'll see a floating chat button in the bottom-right corner. Click it to open the review panel, or press Alt+A to enter annotation mode and click directly on elements.
The floating panel lets you browse, filter, and manage all reviews:
The annotation system lets you point at specific elements and attach reviews to them:
When you annotate an element, the system captures rich metadata that helps the AI agent understand exactly what you're pointing at:
| Captured data | Example |
|---|---|
| Element name | Button 'Save', Input[email] 'Your email', Heading 2 'Features' |
| CSS selector | #main-header, div.card > button.primary:nth-of-type(2) |
| Bounding box | Position and dimensions in pixels |
| Nearby text | Own text + previous/next sibling text for context |
| Selected text | If you highlight text before annotating |
| CSS classes | Filtered (excludes framework-generated hashes) |
| Computed styles | Color, background, font, border, padding (smart per element type) |
| Full DOM path | body > div#app > section.content > div.card > button |
| Accessibility | ARIA roles, labels, tabindex, focusability |
| Sibling context | Parent tag, children count, adjacent sibling tags |
Reviews with annotations show numbered badges on the page next to the annotated element:
Every review can be tagged with a category:
| Tag | Color | Use for |
|---|---|---|
general | Indigo | General feedback (default) |
bug | Red | Something is broken |
suggestion | Green | Improvement idea |
question | Amber | Needs clarification |
| Shortcut | Action |
|---|---|
| Alt+A | Toggle annotation mode |
| Ctrl+Enter | Submit review or reply |
| Escape | Close popup / exit annotation mode |
.reviews/reviews.db.10 tools available to AI agents:
get_review_summary()Overview of all pages with review counts.
get_reviews(page_id?: str)List review comments. Optionally filtered by page. Shows status, tag, element context, and reply chains.
get_annotated_reviews(page_id?: str)Returns only reviews that have element annotation metadata. Includes element name, CSS selector, full DOM path, selected text, accessibility info - everything the agent needs to locate and understand the annotated element.
get_pending_work()All open reviews grouped by page - the agent's "todo list".
add_review(page_id, author, text, tag?, metadata?, parent_id?)Create a new review. Supports tags, annotation metadata (JSON), and threading via parent_id.
resolve_review(review_id, resolved_by?)Mark a review as resolved. Sets resolved_at timestamp and resolved_by (defaults to "agent").
reopen_review(review_id)Reopen a previously resolved review. Clears resolution info.
batch_resolve(page_id, resolved_by?)Resolve all open reviews on a page at once. Returns Resolved 3 review(s) on user-profile.
find_source_file_tool(page_id)Find source files in PROJECT_ROOT matching a page ID. Searches by kebab-case, CamelCase, and glob patterns. Skips node_modules, dist, .git.
get_setup_guide()Returns the full setup guide (MCP config, REST API, browser UI). Useful when the agent needs to help set up the review system in a new project.
All endpoints under /api. CORS enabled for all origins.
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/reviews/summary | Per-page summary with open/resolved counts |
| GET | /api/reviews | All reviews (newest first) |
| GET | /api/reviews/{page_id} | Reviews for a page. Query: ?status=open|resolved, ?tag=bug|suggestion|... |
| POST | /api/reviews/{page_id} | Create review |
| PATCH | /api/review/{id} | Update review (status, text, tag, metadata) |
| DELETE | /api/review/{id} | Delete review permanently |
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/ui-ticket-mcp)<a href="https://allmcps.com/mcp/ui-ticket-mcp"><img src="https://allmcps.com/api/badge/ui-ticket-mcp?style=directory" alt="Ui Ticket MCP on AllMCPs" /></a>