macwhisper-mcp-server
This server connects MacWhisper (a local macOS transcription app) to Claude Desktop, enabling on-device audio transcription and management — all without sending data to the cloud. Supported formats: .m4a, .mp3, .mp4, .mov, .wav, .aiff, .flac.
Transcribe audio (
transcribe_audio): Convert local audio files to text, with optional model selection and the ability to save results to MacWhisper's history.List installed models (
list_models): View all transcription models installed in MacWhisper, with the active model clearly marked. Returned model IDs can be passed directly totranscribe_audio.Cancel a transcription (
cancel_transcription): Stop a transcription currently in progress.List allowed paths (
list_allowed_paths): Check which directories the server is permitted to read audio files from.Watch a folder (
start_watch): Monitor a folder and automatically transcribe new audio files dropped into it, moving completed files to adone/subdirectory.Stop the folder watcher (
stop_watch): Halt the active folder-watching process.Get watch results (
get_watch_results): Fetch transcription results from the folder watcher (file name, transcript, destination, errors) and clear the queue.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@macwhisper-mcp-serverTranscribe ~/Desktop/meeting.m4a and summarize key points"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
macwhisper-mcp-server
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.
Audio file → MacWhisper CLI → MCP server → Claude Desktop

Requirements
macOS (MacWhisper is macOS-only)
MacWhisper — installed and licensed
MacWhisper CLI enabled: open MacWhisper → Settings → Advanced → Command-Line Tool → Install. This places
mwat/usr/local/bin/mw.Python 3.13.x via pyenv
Installing MacWhisper via Homebrew:
brew install --cask macwhisperAfter 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.
Related MCP server: Granola MCP Server
Install
Option A — Homebrew (recommended)
brew tap docdyhr/tap
brew install docdyhr/tap/macwhisper-mcp-serverThis installs the macwhisper-mcp binary into your Homebrew prefix. Upgrade later with brew upgrade docdyhr/tap/macwhisper-mcp-server.
Option B — pip / source
pip install macwhisper-mcp-serverOr from source:
git clone https://github.com/docdyhr/macwhisper-mcp-server.git
cd macwhisper-mcp-server
pyenv install 3.13.13 # skip if already installed
pyenv local 3.13.13
python -m venv .venv
source .venv/bin/activate
pip install -e .Verify the MacWhisper CLI is reachable:
mw versionConfigure Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json and add:
{
"mcpServers": {
"macwhisper": {
"command": "macwhisper-mcp",
"args": [],
"env": {
"MACWHISPER_ALLOWED_PATHS": "~/Desktop:~/Downloads",
"FASTMCP_CHECK_FOR_UPDATES": "off"
}
}
}
}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.
Verify it works
In Claude Desktop, ask:
Transcribe ~/Desktop/memo.m4a
You should see a transcribe_audio tool call appear, followed by the transcript.
Available tools
Tool | Description |
| Transcribe an audio file and return the transcript as plain text. |
| List transcription models installed in MacWhisper, plus whisper-cpp models if |
| Cancel the currently running transcription |
| Return the directories the server is allowed to read from |
| Watch a folder and auto-transcribe new audio files into |
| Stop the active folder watcher |
| Return completed watch-folder transcriptions and clear the queue |
Supported audio formats: .m4a .mp3 .mp4 .mov .wav .aiff .flac
Configuration
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 |
|
| Colon-separated list of directories the server may read from |
| auto-detected | Path to the |
|
| Log file path (never stdout — that's reserved for MCP) |
| none | Colon-separated |
|
| Path to the |
| none | Directory containing your GGML |
Local development: copy .env.example to .env and adjust. With direnv, .envrc exports .env automatically. Without direnv: source .env.
Per-directory language defaults
If you regularly transcribe recordings in a specific language, map a subfolder to
it instead of passing language on every call:
"MACWHISPER_LANGUAGE_DEFAULTS": "~/Desktop/DK=da:~/Desktop/DE=de"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.
Alternative engine: whisper.cpp
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:
brew install whisper-cppHomebrew 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:
"MACWHISPER_WHISPERCPP_MODEL_DIR": "~/whisper-models"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):
Input formats:
.wav,.mp3,.flaconly — not.m4a/.mp4/.mov/.aiff. This is whisper.cpp's own native format support; convert other formats first (e.g. withffmpeg) or use the default MacWhisper engine, which handles all supported formats.persist=trueis not supported — whisper.cpp has no history mechanism.Default language is English (
en) if neitherlanguagenor a directory default is set — unlike MacWhisper, which defers to the app's own language selection.
Development
source .venv/bin/activate
pip install -e ".[dev]"
# Tests
pytest -q
# Lint + format
ruff check .
ruff format .
# Pre-commit hooks (one-time setup)
pip install pre-commit
pre-commit install
# Smoke-test against a real audio file (server must not be running in Claude Desktop)
python scripts/smoke_test.py ~/Downloads/Test.m4aLogs
tail -f ~/Library/Logs/macwhisper-mcp.logSecurity
All file paths are resolved (symlinks followed) and checked against the
MACWHISPER_ALLOWED_PATHSallow-list before anything reaches the CLI.subprocess.runis always called with an argv list — nevershell=True.No network calls. Ever.
See PRD §7 for the full threat model.
Known limitations
Uploaded files: Files dragged into the Claude chat window live in Claude's container and are not accessible to the local MacWhisper CLI. Save the file to your Desktop or Downloads folder (or another allow-listed directory), then ask Claude to transcribe it from there.
Danish letter names: Whisper may phonetically approximate letter names (e.g. "Æ, Ø, Å" → "E, Y, U") when they are spoken in isolation. Letters inside words transcribe correctly. This is a Whisper engine limitation, not a bug in this wrapper. See PRD §12.
Cold-start latency: First transcription after MacWhisper launches takes ~13s (model load). Subsequent calls are ~2s.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables Claude to see and interact with any macOS application using natural language commands. Perfect for testing Mac applications, UI automation, and app development with AI assistance.32
- AlicenseAqualityCmaintenanceIntegrates local Granola.ai meeting intelligence with Claude Desktop to enable searching and analyzing meeting transcripts, notes, and summaries. Users can perform natural language queries to retrieve meeting details, analyze participant patterns, and access full speaker-identified conversations.5MIT
- Alicense-qualityDmaintenanceEnables bidirectional voice interaction for Claude Code using local speech-to-text and text-to-speech models optimized for Apple Silicon. It provides tools to listen to user speech via microphone and speak responses aloud through system speakers.16Apache 2.0
- Alicense-qualityDmaintenanceConnects your Plaud voice recorder to Claude, giving access to recordings, transcripts, and AI summaries so you can query your notes via natural language.11MIT
Related MCP Connectors
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docdyhr/macwhisper-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server