Freezetext Mcp

Created By
juergenkoller-software15 days ago
Overview

FreezeText MCP Server

Swift Platform License MCP juergenkoller-software/freezetext-mcp MCP server

OCR anything on your Mac screen from Claude, Cursor, or any MCP client.

This is the official Model Context Protocol server for FreezeText — a free native macOS app that freezes the screen and extracts text via Apple Vision OCR. Whether running videos, disappearing popups, protected PDFs, or hover tooltips — FreezeText makes any visible text copyable.

You need the FreezeText app installed and running with its HTTP API enabled (Settings → API). This MCP server talks to the app's local API. Get FreezeText (free) at store.juergenkoller.software/apps/freezetext.


What you can do

"Claude, OCR whatever is on my screen right now and summarize it."

"Cursor, run OCR on this screenshot (base64) and extract the invoice number."

"Search my FreezeText history for everything containing 'tracking number'."

The MCP server exposes 12 tools:

CategoryTools
Capture & OCRcapture_screen (freeze + OCR), capture_region (OCR a specific rect), ocr_image (OCR a base64 image)
Historylist_history, search_history, get_history_entry, add_history, delete_history_entry, clear_history, export_history (JSON/CSV)
OCR configget_ocr_languages, set_ocr_languages

All OCR runs locally via Apple Vision Framework — no cloud, no data transmission.


Installation

Prerequisites

  1. macOS 14 (Sonoma) or later
  2. FreezeText app installed and runningget it free here — with the HTTP API enabled in Settings
  3. Swift 5.9+ (Xcode 15+) if building from source

Build from source

git clone https://github.com/juergenkoller-software/freezetext-mcp.git
cd freezetext-mcp
swift build -c release
# Binary: .build/release/FreezeTextMCP

Pre-built binary

See Releases.


Configuration

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "freezetext": {
      "command": "/path/to/FreezeTextMCP",
      "env": {
        "FREEZETEXT_API_PORT": "9876",
        "FREEZETEXT_API_TOKEN": "your-token-if-set"
      }
    }
  }
}

FREEZETEXT_API_TOKEN is only required if you set an API token in FreezeText's Settings.

Claude Code

claude mcp add freezetext /path/to/FreezeTextMCP \
  --env FREEZETEXT_API_PORT=9876

Cursor / other MCP clients

Same pattern — stdio MCP server, configured via the two env vars above.


How it works

┌────────────────┐  JSON-RPC stdio   ┌────────────────┐   HTTP(+Bearer)   ┌────────────────┐
│  Claude/Cursor │ ───────────────►  │ FreezeTextMCP  │ ────────────────► │  FreezeText.app│
│  (MCP client)  │ ◄───────────────  │   (this repo)  │ ◄──────────────── │  (port 9876)   │
└────────────────┘                    └────────────────┘                   └────────────────┘

This is a full MCP server (built on the official modelcontextprotocol/swift-sdk) that maps MCP tool calls to FreezeText's local HTTP API. The OCR engine (Apple Vision), screen capture, and history storage live in the FreezeText app.


Environment variables

VariableDefaultDescription
FREEZETEXT_API_PORT9876Port of FreezeText's local HTTP API
FREEZETEXT_API_TOKEN(none)Bearer token — only if set in FreezeText Settings

About FreezeText

FreezeText is a free native macOS OCR utility. Highlights:

  • Free, no subscription, no sign-up
  • Lightning-fast OCR — Apple Vision Framework, under 0.3 seconds
  • Freeze the screen — capture text from videos, popups, protected PDFs, hover tooltips
  • Global hotkey (⌘⇧7)
  • QR code & barcode detection
  • Searchable history with color tags + JSON/CSV export
  • HTTP API (40+ endpoints) — this MCP server is built on it
  • 100% local — no cloud, no data transmission

Get FreezeText free at store.juergenkoller.software


License

MIT — see LICENSE. This MCP server is open source; the FreezeText app is free (proprietary).

Issues & support

Built by Juergen Koller Software GmbH.

Project Info
Created At
15 days ago
Updated At
14 days ago
Author Name
juergenkoller-software
Star
-
Language
-
License
-
Category
Tags

Recommend Servers

View All
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

11 hours ago
Tavily Mcp
@tavily-ai

JavaScript
a year ago
Puter Mcp

2 days ago
Linkpulse

14 hours ago