Transcribe local audio and video with CrispASR and local models only.
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 into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Local-only transcription for Codex and MCP-based AI agents, powered by CrispASR. No cloud uploads, no API keys required for transcription.
GitHub Release | npm installer | PyPI package | MCP Registry
Give it a local audio or video file. It:
/v1/audio/transcriptions endpoint.Everything runs on your machine. Media never leaves it.
The plugin includes the Codex Skill, command-line tool, and MCP server. Media
stays on your computer. Model files are never downloaded during install/update;
use the explicit models command when you want the installer to fetch them.
Install Node.js 20 or newer, uv, and
ffmpeg. The installer uses uv to provide Python.
The installer:
~/plugins/crispasr-agent-transcriber;Download the recommended local English, Chinese, and language-detection bundle:
The command downloads only approved GGUF files into:
Then verify the installation:
With a Codex build that supports plugin commands, run:
If the CLI has no codex plugin command, open the Codex desktop Plugins view
and install CrispASR Transcriber from the Personal marketplace. Start a new
conversation, then ask:
Uninstall preserves local models, CrispASR binaries, and outputs. Use
uninstall --purge-data only when those files should also be deleted. See
Plugin installation for manual installation and
troubleshooting.
After installation, you can run the transcription script without Codex:
The MCP server is the cross-agent interface. Any agent that supports MCP stdio can run the released package directly from GitHub:
Use the same command and arguments in Claude Desktop, Cursor, or another MCP client. See AI agent integrations for a generic MCP configuration and Codex CLI command.
End users do not need the release steps. Maintainers should follow the publishing guide for Codex Marketplace, PyPI, MCP Registry, and cross-agent distribution.
Install/update never downloads models. Use the explicit models command or
download these three recommended GGUF files into a local directory such as
models/:
| Purpose | Local file | Variant / size | Model page | File page |
|---|---|---|---|---|
| English ASR | cohere-transcribe-q4_k.gguf | Q4_K, smaller default | Cohere Transcribe 03-2026 GGUF | Download |
| Chinese ASR | qwen3-asr-1.7b-q4_k.gguf | Q4_K, smaller default | Qwen3-ASR 1.7B GGUF | Download |
| Language detection | firered-lid-q4_k.gguf | Q4_K default | FireRed LID GGUF | Download |
Optional model IDs include english-q5-0, english-q5-1, english-q6,
english-q8, english-f16, chinese-q8, chinese-f16, lid-q2, lid-q8,
and lid-f16. Download a specific option with:
All three upstream model families are Apache 2.0 licensed.
For automatic English/Chinese routing, pass both ASR paths. The language probe runs first, and only the matching model is loaded:
For an explicit english or chinese profile, --model remains available as
a single-model override.
The tool auto-detects, installs, and updates the CrispASR binary from GitHub releases.
| Flag | Effect |
|---|---|
--install-crispasr | Download latest platform binary to bin/ |
--update-crispasr | Upgrade to newest release |
--crispasr-status | Show installed version + update availability |
--crispasr-bin-dir PATH | Custom directory (default ./bin) |
--crispasr-bin PATH | Exact path to crispasr.exe |
When --manage-server is set and no binary is found, it auto-installs before
starting the server.
On install and update, the tool checks your hardware:
nvidia-smi available, or CUDA_PATH / CUDA_HOME set, or
CUDA in PATH -> downloads crispasr-*-cuda variant.vulkaninfo or VULKAN_SDK set (only when CUDA is absent) ->
downloads crispasr-*-vulkan variant.macOS always uses the universal binary.
| Profile | Backend | ASR model | Language hint |
|---|---|---|---|
english | cohere | Cohere Transcribe 03-2026 | en |
chinese | qwen3-1.7b | Qwen3-ASR 1.7B | zh |
auto | determined by LID | determined by LID | detected |
auto mode runs FireRed language detection on the media, then routes English
to Cohere or Chinese to Qwen3-1.7B. Mixed or uncertain content stops with a
clear error asking you to re-run with --profile english or --profile chinese.
Add --keep-server to leave the server running after transcription.
If the running server's backend doesn't match the selected profile, the tool prints the exact command you need to start the correct server.
--format | File extension | Contents |
|---|---|---|
text | .txt | Plain transcript |
verbose_json | .json | Full response with segments |
srt | .srt | SubRip subtitles |
vtt | .vtt | WebVTT subtitles |
A .metadata.json sidecar is always written alongside the transcript.
Video files are detected automatically. ffmpeg extracts the audio track to a temporary mono 16 kHz WAV before sending it to CrispASR. The temporary file is deleted when transcription finishes.
Exposed tools:
| Tool | Description |
|---|---|
crispasr_health | Check CrispASR server health |
crispasr_backends | List available backends |
crispasr_detect_language | Run language detection on a file |
crispasr_list_models | List approved model choices and local install status |
crispasr_download_models | Explicitly download approved model files |
crispasr_resolve_model_paths | Return recommended local model paths |
transcribe_audio | Transcribe an audio file |
transcribe_video | Transcribe a video file |
understand_video | Transcribe a video, capture synced keyframes, and return an agent context |
transcribe_folder | Batch-transcribe a folder |
--server-url only accepts localhost
unless --allow-remote-server is explicitly passed.shell=False. No user-controlled strings are interpolated into shell
commands.-m auto) requires
--allow-model-auto-download. The models command and
crispasr_download_models tool download only allowlisted Hugging Face files.CrispStrobe/CrispASR GitHub releases.This project is licensed under the MIT License.
This tool orchestrates several independently-licensed projects. It does not bundle, fork, or redistribute their code -- it downloads pre-built binaries and calls them as subprocesses or HTTP services at runtime.
| Component | License | Role |
|---|---|---|
| CrispASR | MIT | ASR engine, server, language detection |
| ffmpeg | LGPL 2.1+ / GPL 2+ | Media decoding and audio extraction |
| Cohere Transcribe 03-2026 | Apache 2.0 | English ASR model (loaded by CrispASR) |
| Qwen3-ASR 1.7B | Apache 2.0 | Chinese ASR model (loaded by CrispASR) |
| FireRed LID | Apache 2.0 | Language detection model (loaded by CrispASR) |
| httpx | BSD | HTTP client for CrispASR API |
| MCP Python SDK | MIT | MCP server framework |
| Node.js | MIT | npm installer runtime |
| adm-zip | MIT | Verified plugin ZIP extraction |
Model files must be downloaded separately by the user from their respective HuggingFace repositories. See Required models above.
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/crispasr-agent-transcriber)<a href="https://allmcps.com/mcp/crispasr-agent-transcriber"><img src="https://allmcps.com/api/badge/crispasr-agent-transcriber?style=directory" alt="CrispASR Agent Transcriber on AllMCPs" /></a>