🔗 Official Website: Claude.ai
📦 Download: Download Claude Desktop
🏷️ Version Requirements: Claude Desktop with MCP support
Claude Desktop is Anthropic's official desktop application for Claude. Voice Mode enhances Claude Desktop by adding natural voice conversation capabilities through the Model Context Protocol (MCP).
- Python 3.10 or higher
- uv package manager (
curl -LsSf https://astral.sh/uv/install.sh | sh) - OpenAI API key (or compatible service)
- System audio dependencies installed (see main README)
# Set your OpenAI API key
export OPENAI_API_KEY="your-openai-key"
# Claude Desktop will use uvx to run Voice Mode on-demand
# No separate installation needed!Download and install from: https://claude.ai/download
- macOS: Download the .dmg file and drag to Applications
- Windows: Download the installer and run it
- Linux: Available as AppImage or through package managers
Configuration File Location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Add Voice Mode Configuration:
{
"mcpServers": {
"voice-mode": {
"command": "uvx",
"args": ["voice-mode"],
"env": {
"OPENAI_API_KEY": "your-openai-key"
}
}
}
}Example Configuration Files:
uvx.json- Using uvx (recommended)pip-install.json- Using pip installationpython-m.json- Using python -mlivekit.json- With LiveKit support
After saving the configuration, restart Claude Desktop for changes to take effect.
-
Check MCP Server Status:
- Open Claude Desktop
- Look for the MCP icon (puzzle piece) in the interface
- Click it to see connected servers
- "voice-mode" should be listed
-
Test Voice Mode:
- In Claude Desktop, type: "Let's have a voice conversation"
- You should hear Claude speak and the app will listen for your response
- Try saying: "Hello Claude, can you hear me?"
Type in Claude Desktop:
"Let's talk about this project"
"Can you help me debug this issue using voice?"
"Tell me about best practices for React"
"Read this code and explain what it does"
"Help me refactor this function"
"What tests should I write for this component?"
Since Claude Desktop uses the configuration file, you have two options:
Option 1: Set in config file (shown above)
- Pros: Self-contained, no system setup needed
- Cons: API key is stored in plain text
Option 2: Inherit from system
{
"mcpServers": {
"voice-mode": {
"command": "uvx",
"args": ["voice-mode"]
// No env section - inherits from system
}
}
}Then set in your shell: export OPENAI_API_KEY="your-key"
- Ensure Claude Desktop is fully restarted after config changes
- Check the MCP servers list in Claude Desktop
- Verify the config file is valid JSON (no trailing commas!)
- Grant Claude Desktop microphone permissions in system settings
- Check system audio input/output devices
- Try running with debug: Add
"VOICEMODE_DEBUG": "true"to env
- Ensure
uvis installed and in your PATH - Try running
uvx voice-mode --helpin terminal to verify - Check Claude Desktop logs: Help → View Logs
- Grant microphone permissions: System Settings → Privacy & Security → Microphone → Claude
- May need to restart Claude Desktop after granting permissions
- Run as Administrator if you encounter permission issues
- Windows Defender may prompt when first using microphone
- May need to add user to
audiogroup:sudo usermod -a -G audio $USER - Check PulseAudio/PipeWire is running
For complete privacy, use local services:
{
"mcpServers": {
"voice-mode": {
"command": "uvx",
"args": ["voice-mode"],
"env": {
"VOICEMODE_TTS_BASE_URL": "http://127.0.0.1:8880/v1",
"VOICEMODE_STT_BASE_URL": "http://127.0.0.1:2022/v1"
}
}
}
}If you prefer to install Voice Mode permanently:
pip install voice-modeThen update config to use the installed version:
{
"mcpServers": {
"voice-mode": {
"command": "voice-mode"
}
}
}- 📚 Voice Mode Documentation
- 🔧 Configuration Reference
- 🎤 Local STT/TTS Setup
- 💬 Claude Desktop Documentation
- 🐛 Troubleshooting Guide
Need Help? Join our Discord community