Server data from the Official MCP Registry
MCP server for local speech translation (EN ↔ 中文) via Whisper + Claude + Piper
MCP server for local speech translation (EN ↔ 中文) via Whisper + Claude + Piper
Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
8 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.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: ANTHROPIC_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"dev-waxberry-live-translate-mcp": {
"env": {
"ANTHROPIC_API_KEY": "your-anthropic-api-key-here"
},
"args": [
"-y",
"live-translate-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Real-time English ↔ Mandarin speech translation for Claude — powered by Whisper, Claude AI, and Piper TTS.
Give Claude the ability to listen, translate, and speak. live-translate-mcp is a Model Context Protocol (MCP) server that adds speech translation as a native tool inside Claude Desktop and Claude Code. Hand it an audio file, and it transcribes, translates, synthesises, and plays the result — entirely on your machine, with Claude handling the translation.
| Step | Technology | Where it runs |
|---|---|---|
| Speech → Text | OpenAI Whisper (via @huggingface/transformers) | Local |
| Text → Translation | Claude (Opus 4.8) | Anthropic API |
| Translation → Speech | Piper TTS (ONNX) | Local |
Audio never leaves your machine except for the translated text sent to the Claude API. ASR and TTS run fully on-device.
translate_fileTranslate a WAV audio file. Pass an absolute path — the server transcribes it, translates the text via Claude, synthesises speech, saves <name>_translated.wav next to the original, and plays it automatically.
Translate /Users/alice/meeting_clip.wav
Returns: original text, translation, and the path to the saved output file.
translate_speechTranslate raw audio passed as a base64-encoded WAV string. Returns the transcription, translation, and synthesised audio as base64 WAV — useful for programmatic workflows.
health_checkVerify that all dependencies (Whisper model cache, Piper voice files, espeak-ng) are present and ready before making a translation request.
No installation required. Run it directly with npx:
npx -y live-translate-mcp
Or install globally:
npm install -g live-translate-mcp
Prerequisites:
espeak-ng — for TTS phonemisation (brew install espeak-ng on macOS, apt install espeak-ng on Linux)The Whisper model (~150 MB) and Piper voice models (~200 MB) download automatically on first use and are cached in ~/.live-translate/.
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"live-translate": {
"command": "npx",
"args": ["-y", "live-translate-mcp"],
"env": {
"ANTHROPIC_API_KEY": "your-api-key-here"
}
}
}
}
Restart Claude Desktop. You'll see live-translate appear in the tools panel.
claude mcp add live-translate -- npx -y live-translate-mcp
Then set your API key in the environment before starting Claude Code, or pass it via the MCP env config.
Once configured, just ask Claude naturally:
"Translate this audio file for me: /Users/alice/recording.wav"
"Use translate_file on /tmp/interview.wav"
"Check if live-translate is ready"
Claude will call the appropriate tool automatically.
| Language | ASR | Translation | TTS |
|---|---|---|---|
| English | ✓ | ✓ | ✓ |
| Mandarin Chinese (普通话) | ✓ | ✓ | ✓ |
Language is detected automatically from the audio — no need to specify it.
| live-translate-mcp | Cloud speech APIs | |
|---|---|---|
| ASR | Local (Whisper) | Remote |
| Translation | Claude API | Remote |
| TTS | Local (Piper) | Remote |
| Audio privacy | Audio stays on device | Audio uploaded |
| Cost | Claude API only | Per-minute pricing |
| Offline | Partially (ASR + TTS) | No |
| Variable | Default | Description |
|---|---|---|
ANTHROPIC_API_KEY | — | Required. Your Anthropic API key. |
PIPER_VOICE_DIR | ~/.live-translate/voices | Path to Piper .onnx voice files. |
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.