Server data from the Official MCP Registry
MacWhisper transcription for Claude Desktop. Fully local, no cloud, audio stays on your Mac.
MacWhisper transcription for Claude Desktop. Fully local, no cloud, audio stays on your Mac.
Valid MCP server (1 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
13 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MACWHISPER_ALLOWED_PATHS
Environment variable: MACWHISPER_CLI
Environment variable: MACWHISPER_LOG_PATH
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-docdyhr-macwhisper-mcp-server": {
"env": {
"MACWHISPER_CLI": "your-macwhisper-cli-here",
"MACWHISPER_LOG_PATH": "your-macwhisper-log-path-here",
"MACWHISPER_ALLOWED_PATHS": "your-macwhisper-allowed-paths-here"
},
"args": [
"macwhisper-mcp-server"
],
"command": "uvx"
}
}
}From the project's GitHub README.
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

mw at /usr/local/bin/mw.Installing MacWhisper via Homebrew:
brew install --cask macwhisper
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.
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 version
Edit ~/Library/Application Support/Claude/claude_desktop_config.json and add:
{
"mcpServers": {
"macwhisper": {
"command": "/Users/<you>/macwhisper-mcp-server/.venv/bin/macwhisper-mcp",
"args": [],
"env": {
"MACWHISPER_ALLOWED_PATHS": "/Users/<you>/Desktop:/Users/<you>/Downloads",
"FASTMCP_CHECK_FOR_UPDATES": "off"
}
}
}
}
Replace <you> with your macOS username. 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?, persist?) | Transcribe an audio file and return the transcript as plain text. Pass persist=true to save to MacWhisper history. |
list_models() | List transcription models installed in MacWhisper; active 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) |
Local development: copy .env.example to .env and adjust. With direnv, .envrc exports .env automatically. Without direnv: source .env.
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.m4a
tail -f ~/Library/Logs/macwhisper-mcp.log
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.
Be the first to review this server!
by Modelcontextprotocol · AI & ML
Dynamic and reflective problem-solving through structured thought sequences
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.