MacWhisper transcription for Claude Desktop. Fully local, no cloud, audio stays on your Mac.
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.
Local MCP server that connects MacWhisper to Claude Desktop.
What it does: Drop an audio file on your Desktop, then ask Claude to transcribe it, summarise it, or pull out action items β in one step. MacWhisper does the transcription on your Mac; Claude does the thinking. Nothing leaves your machine. No cloud APIs. No data ever leaves your Mac.

mw at /usr/local/bin/mw.Installing MacWhisper via Homebrew:
After installation, enable the CLI in MacWhisper Settings as above. When you later run brew upgrade --cask macwhisper, the CLI symlink updates automatically β no re-install needed.
This installs the macwhisper-mcp binary into your Homebrew prefix. Upgrade later with brew upgrade docdyhr/tap/macwhisper-mcp-server.
Or from source:
Verify the MacWhisper CLI is reachable:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json and add:
Restart Claude Desktop.
Note: Audio files must be saved to your Mac's filesystem (Desktop, Downloads, or another allow-listed folder) before asking Claude to transcribe them. Files uploaded directly to the Claude chat window live in Claude's container and are not accessible to the local MacWhisper CLI.
In Claude Desktop, ask:
Transcribe ~/Desktop/memo.m4a
You should see a transcribe_audio tool call appear, followed by the transcript.
| Tool | Description |
|---|---|
transcribe_audio(path, model?, language?, persist?, engine?) | Transcribe an audio file and return the transcript as plain text. language is an ISO 639-1 code (e.g. da) or auto; overrides any per-directory default. persist=true saves to MacWhisper history (MacWhisper engine only). engine is "macwhisper" (default) or "whisper-cpp" β see Alternative engine below. |
list_models() | List transcription models installed in MacWhisper, plus whisper-cpp models if MACWHISPER_WHISPERCPP_MODEL_DIR is configured; active MacWhisper model is marked |
cancel_transcription() | Cancel the currently running transcription |
list_allowed_paths() | Return the directories the server is allowed to read from |
start_watch(folder) | Watch a folder and auto-transcribe new audio files into ../done/ |
stop_watch() | Stop the active folder watcher |
get_watch_results() | Return completed watch-folder transcriptions and clear the queue |
Supported audio formats: .m4a .mp3 .mp4 .mov .wav .aiff .flac
All configuration is via environment variables. Pass them through the env dict in claude_desktop_config.json (for Claude Desktop) or set them in .env for local development.
| Env var | Default | Description |
|---|---|---|
MACWHISPER_ALLOWED_PATHS | ~/Desktop | Colon-separated list of directories the server may read from |
MACWHISPER_CLI | auto-detected | Path to the mw binary. Defaults to /Applications/MacWhisper.app/Contents/MacOS/mw if that file exists, otherwise mw on PATH |
MACWHISPER_LOG_PATH | ~/Library/Logs/macwhisper-mcp.log | Log file path (never stdout β that's reserved for MCP) |
MACWHISPER_LANGUAGE_DEFAULTS | none | Colon-separated dir=lang pairs (ISO 639-1, or auto) β files in a matching directory get --language automatically. Most specific directory wins; an explicit language argument always overrides. |
MACWHISPER_WHISPERCPP_BINARY | whisper-cli on PATH | Path to the whisper-cli binary, if not on PATH. Only used when engine="whisper-cpp". |
MACWHISPER_WHISPERCPP_MODEL_DIR | none | Directory containing your GGML .bin model files. Required to use engine="whisper-cpp" at all β see below. |
Local development: copy .env.example to .env and adjust. With direnv, .envrc exports .env automatically. Without direnv: source .env.
If you regularly transcribe recordings in a specific language, map a subfolder to
it instead of passing language on every call:
Drop a file in ~/Desktop/DK/ and transcribe_audio passes --language da
automatically. An explicit language argument on the tool call always wins over
the directory default.
transcribe_audio(..., engine="whisper-cpp") transcribes using a standalone
whisper.cpp binary instead of
MacWhisper β useful if you don't have a MacWhisper license, or want a fully
open-source local path. It does not touch MacWhisper in any way.
Setup:
Homebrew installs the whisper-cli binary only β no models. Download a GGML
model yourself (this server never downloads anything over the network) from
huggingface.co/ggerganov/whisper.cpp,
e.g. ggml-base.en.bin, into a directory of your choice, then point the server at it:
Then call the tool with the model's filename (not a MacWhisper engine:model-id
string):
Transcribe ~/Desktop/memo.wav using the whisper-cpp engine with model ggml-base.en.bin
Limitations (v1):
.wav, .mp3, .flac only β not .m4a/.mp4/.mov/.aiff. This
is whisper.cpp's own native format support; convert other formats first (e.g. with
ffmpeg) or use the default MacWhisper engine, which handles all supported formats.persist=true is not supported β whisper.cpp has no history mechanism.en) if neither language nor a directory default
is set β unlike MacWhisper, which defers to the app's own language selection.MACWHISPER_ALLOWED_PATHS allow-list before anything reaches the CLI.subprocess.run is always called with an argv list β never shell=True.See PRD Β§7 for the full threat model.
MIT β see LICENSE.
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/macwhisper-mcp-server)<a href="https://allmcps.com/mcp/macwhisper-mcp-server"><img src="https://allmcps.com/api/badge/macwhisper-mcp-server?style=directory" alt="Macwhisper MCP Server on AllMCPs" /></a>