AgentStack
MCP verified MIT Self-run

UIPin

mcp-sixtdreanight-uipin · by sixtdreanight

Universal UI feedback tool — screenshot, annotate, send to AI via MCP · Electron · React · TypeScript

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add mcp-sixtdreanight-uipin

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-sixtdreanight-uipin)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of UIPin? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

[English](README.md) · [简体中文](README.zh-CN.md) · [繁體中文](README.zh-TW.md) · [日本語](README.ja.md)


UIPin

[](https://github.com/sixtdreanight/UIPin/actions/workflows/ci.yml) [](LICENSE)

Universal UI annotation & feedback tool. Screenshot → annotate with pins, arrows, rectangles, and freehand → export to AI via MCP protocol.

Why UIPin?

The typical UI feedback loop is broken: screenshots sent over chat, vague comments, endless back-and-forth. UIPin replaces this with visual annotations that AI can directly consume and act on.

Features

  • 3 capture modes — Fullscreen (Ctrl+Shift+P), Region (Ctrl+Shift+R), Window (Ctrl+Shift+W)
  • 4 annotation tools — Pin markers, arrows, rectangles, freehand drawing
  • Undo/redo — 50-step history
  • Zoom & pan — Scroll to zoom, Shift+drag to pan
  • MCP Server — AI tools (Claude Code, Cursor, Windsurf) can read annotations live via JSON-RPC + SSE
  • Export — Markdown (with color analysis + cropped regions), JSON, annotated PNG
  • UIA integration — Auto-detects Windows UI element name, type, class, and ancestry tree at each pin
  • i18n — English, 简体中文, 繁體中文, 日本語
  • System tray — Always available, never in the way
  • Auto-update — Keeps itself current via GitHub Releases

Quick Start

Download

Download the latest installer from Releases.

| Platform | Package | |----------|---------| | Windows | .exe (NSIS installer) | | macOS | .dmg | | Linux | .AppImage |

Build from Source

git clone https://github.com/sixtdreanight/UIPin.git
cd UIPin
npm install
npm run dev      # Start in development mode
npm run build    # Production build
npm run dist     # Package installer

Requirements: Node.js ≥ 20, npm ≥ 10

Usage

Keyboard Shortcuts

| Global Shortcut | Action | |----------------|--------| | Ctrl+Shift+P | Capture full screen | | Ctrl+Shift+R | Capture region | | Ctrl+Shift+W | Capture window | | Ctrl+Z / Ctrl+Shift+Z | Undo / Redo |

| In-App Shortcut | Action | |----------------|--------| | P / A / R / F | Switch tool: Pin / Arrow / Rect / Freehand | | Esc | Deselect all | | Scroll | Zoom in/out | | Shift + Drag | Pan |

Tools

  • Pin — Place a numbered marker. Click to add a comment. Drag to reposition.
  • Arrow — Draw an arrow from one point to another.
  • Rectangle — Draw a dashed rectangle to highlight a region.
  • Freehand — Draw freely for custom highlights.

Export Formats

  • Copy (Markdown) — Full bug report with coordinates, color analysis, cropped region screenshots, and UIA element tree. Paste directly into AI chat.
  • Screenshot (PNG) — Annotated screenshot with all markers baked in.
  • JSON — Structured data for programmatic consumption.

MCP Protocol

UIPin runs a local MCP-compatible JSON-RPC server at http://127.0.0.1:3846.

Tools

| Tool | Description | |------|-------------| | list_annotations | List all active annotation pins and drawings | | get_screenshot | Get current screenshot metadata | | resolve_annotation | Mark an annotation as resolved (removes from list) | | get_context | Get structured Markdown context for AI consumption |

Quick Test

# List available tools
curl -s http://127.0.0.1:3846/mcp \
  -H "Content-Type: application/json" \
  -d '{"method":"tools/list","id":1}'

# Get current annotations
curl -s http://127.0.0.1:3846/mcp \
  -H "Content-Type: application/json" \
  -d '{"method":"tools/call","id":2,"params":{"name":"list_annotations"}}'

SSE (Server-Sent Events)

Subscribe to real-time session updates at http://127.0.0.1:3846/sse.

Architecture

UIPin/
├── electron/              # Electron main process
│   ├── main.ts            # Window, IPC, shortcuts, tray
│   ├── preload.ts         # Context bridge API
│   ├── uia.ts             # Windows UIAutomation (PowerShell)
│   ├── updater.ts         # Auto-update via electron-updater
│   ├── logger.ts          # Structured logging
│   ├── mcp/               # MCP protocol server (modular)
│   │   ├── http-server.ts # HTTP bootstrap, routing, CORS
│   │   ├── handlers.ts    # Tool implementations
│   │   ├── sse.ts         # SSE connection management
│   │   └── types.ts       # Shared types
│   └── mcp-server.ts      # Re-export facade
├── src/                   # React renderer
│   ├── components/        # UI components
│   ├── hooks/             # Custom React hooks
│   ├── lib/               # Pure utility modules
│   ├── i18n/              # Internationalization
│   ├── context/           # React context + reducer
│   └── types/             # TypeScript type definitions
├── resources/             # Icons and images
└── .github/workflows/     # CI/CD pipeline

Development

# Install dependencies
npm install

# Start development mode
npm run dev

# Type check
npm run typecheck

# Lint
npm run lint

# Run tests
npm test
npm run test:watch
npm run test:e2e

# Build production
npm run build

# Package for distribution
npm run dist

Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md).

License

MIT — see [LICENSE](LICENSE).


  • [简体中文](README.zh-CN.md)
  • [繁體中文](README.zh-TW.md)
  • [日本語](README.ja.md)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.