ClipTrace

mcp
Security Audit
Warn
Health Warn
  • License — License: MIT
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 5 GitHub stars
Code Pass
  • Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Pass
  • Permissions — No dangerous permissions requested

No AI report is available for this listing yet.

SUMMARY

Local-first clipboard history for macOS — offline semantic search, OCR, content protection, and a built-in MCP server for AI tools. 本地优先的 macOS 剪贴板管理器

README.md

ClipTrace logo

ClipTrace

English · 中文

Local-first clipboard history for macOS and AI tools.

Website CI Latest release MIT License macOS 14+

ClipTrace is an open-source macOS clipboard manager with offline semantic search and a built-in Model Context Protocol server. It lets you search clipboard history locally, organize useful clips, and optionally let AI clients such as Claude Desktop, Claude Code, or Cursor query your clipboard without uploading it to a cloud service.

Why ClipTrace?

  • Local-first by default - clipboard history, OCR text, tags, and embeddings stay on your Mac.
  • Offline semantic search - Apple NLEmbedding powers meaning-based search without hosted embedding APIs.
  • AI-native workflow - the app binary can run as an MCP stdio server with searchable and writable clipboard tools.
  • Native macOS utility - menu bar app, global hotkeys, Quick Paste, previews, snippets, and SwiftUI interface.
  • Content protection - sensitive values such as phone numbers and API keys are redacted across the UI, exports, and MCP by default, while the original stays on your Mac for reuse.
  • Privacy controls - pause capture, exclude source apps, ignore sensitive pasteboard markers, strip URL trackers, disable MCP tools, and delete history.

Preview

Main window
Main window - history, full-text and semantic search, tags

Activity stats
Activity stats - daily count and yearly heatmap

MCP integration
MCP server - connect Claude Desktop, Claude Code, or Cursor

Features

Capture and Reuse

  • Auto-captures text, images, video, files, URLs, and rich text
  • Double-click to copy an entry back to the clipboard
  • Duplicate refresh keeps re-copied items at the top instead of creating duplicates
  • Optional paste-as-plain-text and trailing-whitespace trimming
  • Soft-delete trash with restore, permanent delete, and retention controls
  • Global hotkeys for the main window and snippets
  • Efficient image storage — clipboard images are kept compressed with external binary storage, so memory and disk usage stay low even with a long image history

Search and Organization

  • Full-text search with type filters
  • Offline semantic search over text and OCR content
  • Source-app and time filters such as app:Safari, since:2d, and before:2026-05-01
  • Favorites, pinned clips, tags, custom titles, and tag autocomplete
  • Multi-select merge for clips of the same type

Content Awareness

  • Rich preview popover
  • OCR indexing for images
  • Smart text parsing for timestamps, Base64, and JSON
  • Video preview with thumbnail or inline player mode
  • URL tracking-parameter stripping for utm_*, fbclid, gclid, and more
  • Screen-recording hide mode for the app window

Content Protection

  • Automatic, conservative redaction of sensitive spans: Chinese mainland phone numbers (13812345678138****5678) and API keys, tokens, secrets, and passwords — labeled values such as appkey=… plus high-confidence prefixes like sk-, ghp_, AKIA
  • Masks only the sensitive value while keeping surrounding labels and structure; conservative enough to leave UUIDs, hashes, timestamps, and ordinary URLs untouched
  • Redacted display across the history list, previews, menu bar, Dynamic Island, Quick Paste, Quick Look, and search snippets, with a lock badge on protected clips
  • The original value is never modified in storage — copy, quick paste, paste-as-plain-text, and edits still use the raw clip
  • Default exports and MCP responses return redacted content with isProtected metadata; raw egress requires an explicit opt-in
  • Master switch and one editable rule list in Settings → Privacy: the built-in phone/app-key rules can be edited, reset, or turned off, alongside your own keyword or regex rules

Export and Stats

  • JSON export with type, date, favorite, and pinned filters
  • Per-item export to original formats such as text and PNG
  • Copy statistics, 14-day chart, and GitHub-style yearly heatmap

MCP Server

The app binary doubles as an MCP stdio server. Configure a compatible client with:

{
  "mcpServers": {
    "clipboard": {
      "command": "/Applications/ClipTrace.app/Contents/MacOS/ClipTrace",
      "args": ["--mcp"]
    }
  }
}

Available tools:

Tool Description
search_clipboard Keyword or semantic search over clipboard history
list_recent List recent entries, optionally filtered by type
get_clip Fetch one entry by UUID with full content and metadata
list_tags List all tags and usage counts
list_recent_activity List entries added since an ISO date or relative time such as 30m, 2h, 3d, 1w
tag_clip / untag_clip Add or remove tags
favorite_clip / pin_clip Update favorite or pinned state
delete_clip / restore_clip Soft-delete, permanently delete, or restore entries
create_snippet Create a snippet with optional title and tags

Protected clips are redacted in MCP responses by default and carry isProtected metadata; returning raw protected content requires an explicit opt-in in Settings → Privacy. MCP can still expose other clipboard contents to the client you configure — read PRIVACY.md before enabling it for sensitive workflows.

Install

Download the latest DMG from GitHub Releases, open it, and drag ClipTrace into Applications.

Current public releases are signed with a stable self-signed identity so macOS can keep Accessibility permission across updates. Public notarization is on the roadmap. If macOS blocks a downloaded build, you can build from source with unsigned local signing disabled.

System Requirements

  • macOS 14.0 Sonoma or later
  • Xcode 16.0 or later recommended for development

Build from Source

Open ClipTrace.xcodeproj in Xcode, select "My Mac", and run.

Command line:

xcodebuild \
  -project ClipTrace.xcodeproj \
  -scheme ClipTrace \
  -configuration Debug \
  -destination 'platform=macOS' \
  -derivedDataPath build \
  -skipMacroValidation \
  CODE_SIGN_IDENTITY="-" \
  CODE_SIGNING_REQUIRED=NO \
  CODE_SIGNING_ALLOWED=NO \
  build

Code Signing for Maintainers

Releases use a stable self-signed certificate so macOS keeps Accessibility permission across rebuilds and updates. Without a stable signing identity, the permission can be invalidated after each build even if the System Settings toggle still appears enabled.

Run once to create and install the certificate:

scripts/generate-signing-cert.sh

The script prints SIGNING_CERT_P12_BASE64 and SIGNING_CERT_PASSWORD values for GitHub Actions secrets.

Keyboard Shortcuts

Shortcut Action
⌘⇧V Open main window
⌘, Open settings
⌘N New snippet
⌘⏎ Save in snippet editor
Esc Dismiss preview, go back, or cancel edit

Project Docs

Contributing

Issues and pull requests are welcome. Good first areas include documentation, localization, MCP resources/prompts, URL sanitizer tests, search parser tests, and privacy polish.

Before contributing, read CONTRIBUTING.md. For private security or privacy reports, follow SECURITY.md.

License

ClipTrace is released under the MIT License.

Reviews (0)

No results found