Is Vocateca open source?
Partly, and deliberately so. Vocateca is open core: the CLI, the MCP server, and the on-device transcription engine — the code that actually touches your audio — are open source under the Apache-2.0 license. The macOS app itself, and the account and billing backend behind Pro, are proprietary.
The engine, the CLI, and the MCP server — all of it.
The open-core repository contains the entire transcription pipeline: everything that downloads, transcribes, organizes, and exports your audio. There is no entitlement check anywhere in it — every feature works with no account and no Pro gate.
VocatecaCore
The domain layer: subscription and source management, the download-and-transcription pipeline, local state (SQLite), speaker diarization, proper-noun correction, and integrations (webhooks, Notion, Obsidian export). Headless — no UI. WhisperKit ships inside it as the default transcription engine.
VocatecaParakeet
The Parakeet-TDT engine binding — CoreML on the Apple Neural Engine, an optional faster alternative to Whisper.
VocatecaQwen
The Qwen3-ASR engine binding — MLX on Apple Silicon, another optional engine you can select per show.
vocateca-cli
A scriptable command-line interface over the core, with --json output on every command, and a built-in MCP server (vocateca-cli mcp) so an AI assistant can drive it directly over stdio.
Why give away the engine?
You can verify the privacy claims
"Nothing leaves your Mac" is easy to say in marketing copy. In the open core it's something you can actually check — read the exact code that downloads, transcribes, and stores your audio, and confirm for yourself that there's no phone-home and no telemetry.
No lock-in
Transcripts are plain Markdown, SRT, and OKF files on your disk, not a proprietary format trapped in an app. The CLI and MCP server carry no entitlement check, so even if you stopped using the macOS app tomorrow, the engine underneath keeps working exactly as it does today.
Funding that doesn't compromise you
Vocateca isn't funded by ads, by selling usage data, or by a free tier designed to convert into data collection. It's funded by people who choose to pay for the polished app and Pro automation — a business model that only works if the underlying claims are true, which is the whole point of opening the engine.
What stays closed, and why
The macOS app's interface, its scheduled automation daemon, and the account, checkout, and entitlement backend behind Pro are proprietary. None of that code is about how transcription happens — it's the packaged product experience and the billing system that funds building it. Keeping it closed is what lets the engine underneath stay free and genuinely unencumbered, with no paywall hidden inside it.
- The macOS app UI and the Pro automation daemon (scheduled auto-download, background transcription, daily summaries)
- The account, checkout, and entitlement/billing backend
What this means for you
Audit it
Read exactly how your audio is downloaded, transcribed, diarized, and stored. Confirm for yourself that there's no network call this page didn't already tell you about.
Script it
Run vocateca-cli headlessly on a server, in a cron job, or from your own tooling. Every command supports --json output, and nothing in it is gated behind a subscription.
Build on it
Point an AI assistant at the MCP server, or embed VocatecaCore, VocatecaParakeet, or VocatecaQwen as libraries in your own project. Apache-2.0 permits commercial use, so you can build on it, not just around it.