m4x
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., "@m4xtranscribe my latest voice memo"
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.
m4x — local, private audio transcription
Turn voice memos and podcasts into text entirely on your own machine. m4x is a thin, fast wrapper around whisper.cpp that ships as both a command-line tool and an MCP server for AI agents.
Think of it as a tiny, local-first alternative to cloud transcription products (Plaud, Otter, etc.) — with one big difference: your audio never leaves your computer. No account, no upload, no API key, no per-minute fee. It runs beautifully on Apple-silicon Macs (Metal-accelerated) but works anywhere whisper.cpp does.
⚡ On an Apple M-series machine, the
large-v3-turbomodel transcribes roughly an hour of audio in a couple of minutes, fully offline.
Why local?
m4x (local) | Typical cloud transcriber | |
Where your audio goes | Stays on your machine | Uploaded to a third party |
Account / API key | None | Required |
Cost | Free | Per-minute or subscription |
Works offline | Yes | No |
Summaries | Bring your own LLM (see below) | Built-in (cloud) |
Related MCP server: simple-asr-mcp
Requirements
Python 3.10+
whisper.cpp (
whisper-cli) — install via Homebrew:brew install whisper-cppA ggml model — download once (see below)
Install
# 1. the transcription engine
brew install whisper-cpp
# 2. a model (large-v3-turbo: great quality/speed; ~1.5 GB)
mkdir -p ~/whisper-models
curl -L -o ~/whisper-models/ggml-large-v3-turbo.bin \
https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo.bin
# 3. m4x itself
pipx install . # or: pip install .CLI usage
# a single voice memo
m4x transcribe ~/Downloads/memo.m4a
# -> writes ~/Downloads/memo.txt
# a whole folder of podcasts, German
m4x transcribe ~/Podcasts --lang de
# print to stdout and pipe straight into your own LLM for a summary
m4x transcribe interview.mp3 --stdout | llm "summarise this into 5 bullet points and action items"Options: --lang (e.g. en, de, or auto), --model <path>, --out <dir>, --stdout.
MCP usage (Claude Desktop & other agents)
m4x also runs as an MCP server so an agent can transcribe for you. Long files run as a background job — start, then poll.
Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"m4x": {
"command": "m4x-mcp"
}
}
}Tools exposed: transcribe_start(file_path, language) → job_id, transcribe_result(job_id), transcribe_list_jobs().
"Mini-Plaud" pattern: transcribe → summarise
m4x deliberately does transcription only and stays out of the AI-summary business, so you keep full control (and privacy) over that step. Pair it with any LLM you like:
m4x transcribe standup.m4a --stdout | llm "Extract decisions, owners, and due dates as a table"Or, in an agent: call transcribe_start, poll transcribe_result, then ask the model to summarise the returned text.
Configuration
Everything has sensible defaults; override via environment variables:
Variable | Default | Meaning |
|
| Path to the whisper.cpp binary |
|
| Path to the ggml model |
How it works
m4x shells out to whisper-cli with your chosen model and language, writes a .txt transcript next to the audio (or to --out), and returns the text. The CLI and the MCP server share one small core module — no duplicated logic. That's the whole thing: ~200 lines, no magic.
License
MIT — see LICENSE. Contributions welcome; see CONTRIBUTING.md and SECURITY.md.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/closeofbusiness/m4x'
If you have feedback or need assistance with the MCP directory API, please join our Discord server