live-translate-mcp
The live-translate-mcp server enables real-time English ↔ Mandarin speech translation, using on-device speech-to-text (Whisper) and text-to-speech (Piper), with Claude handling the linguistic translation. ASR and TTS run fully locally; only the translated text is sent to the Anthropic API.
translate_file: Pass an absolute path to a WAV file. The server auto-detects the language, transcribes the speech, translates it via Claude, synthesizes the translated audio with Piper TTS, saves the output as<name>_translated.wavnext to the original, plays it back, and returns the original text, translation, and output file path.translate_speech: Send base64-encoded WAV audio directly and receive the transcription, translation, and synthesized translated audio as base64 WAV — ideal for programmatic workflows.health_check: Verify that all required dependencies (Whisper model cache, Piper TTS voice files, andespeak-ng) are present and ready before making translation requests.Automatic language detection: No need to specify the source language — English or Mandarin Chinese is detected automatically from the audio.
live-translate-mcp
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.
What it does
Step | Technology | Where it runs |
Speech → Text | OpenAI Whisper (via | 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.
Related MCP server: Voice MCP
Tools
translate_file
Translate 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.wavReturns: original text, translation, and the path to the saved output file.
translate_speech
Translate raw audio passed as a base64-encoded WAV string. Returns the transcription, translation, and synthesised audio as base64 WAV — useful for programmatic workflows.
health_check
Verify that all dependencies (Whisper model cache, Piper voice files, espeak-ng) are present and ready before making a translation request.
Installation
No installation required. Run it directly with npx:
npx -y live-translate-mcpOr install globally:
npm install -g live-translate-mcpPrerequisites:
Node.js 18+
An Anthropic API key
espeak-ng— for TTS phonemisation (brew install espeak-ngon macOS,apt install espeak-ngon Linux)
The Whisper model (~150 MB) and Piper voice models (~200 MB) download automatically on first use and are cached in ~/.live-translate/.
Claude Desktop setup
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 Code setup
claude mcp add live-translate -- npx -y live-translate-mcpThen set your API key in the environment before starting Claude Code, or pass it via the MCP env config.
Usage examples
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.
Supported languages
Language | ASR | Translation | TTS |
English | ✓ | ✓ | ✓ |
Mandarin Chinese (普通话) | ✓ | ✓ | ✓ |
Language is detected automatically from the audio — no need to specify it.
How it compares
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 |
Environment variables
Variable | Default | Description |
| — | Required. Your Anthropic API key. |
|
| Path to Piper |
Related
live-translate — the standalone CLI for push-to-talk translation with no API key required, using local models end-to-end.
Model Context Protocol — the open standard this server implements.
Piper TTS — the local TTS engine powering speech synthesis.
Licence
MIT
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
- Alicense-qualityDmaintenanceEnables text-to-speech conversion with smart language detection (using Google TTS for Chinese) and audio file playback with playback controls for Claude Desktop.Last updated1MIT
- 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.Last updated16Apache 2.0
- AlicenseAqualityAmaintenanceEnables transcription, summarization, and action item extraction from audio files on your Mac using MacWhisper and Claude Desktop, all locally without any cloud APIs.Last updated72MIT
- Alicense-qualityDmaintenanceLocal MCP server that enables voice input to Claude by transcribing microphone audio locally using faster-whisper, avoiding cloud services.Last updatedMIT
Related MCP Connectors
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
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/waxberry-dev/live-translate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server