Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

voicemode

MCP.Pizza Chef: mbailey

Speak your questions instead of typing them, and hear the assistant read its replies back to you in a natural voice, all inside Claude Code. It can run completely offline using free, built-in speech engines for privacy, or you can add a free OpenAI account for faster, cloud-based voices. It is especially handy for hands-free moments, like cooking, walking to a meeting, or giving your eyes a rest after a long stretch at the screen.

Coding
Communication

Use This MCP server To

Have a spoken back-and-forth conversation with my assistant Ask a question out loud while my hands are busy Listen to a response instead of reading it on screen Keep working hands-free while cooking or walking Give my eyes a break from staring at the screen Talk through an idea out loud instead of typing it

README

VoiceMode

Natural voice conversations with Claude Code (and other MCP capable agents)

PyPI Downloads PyPI Downloads PyPI Downloads

VoiceMode enables natural voice conversations with Claude Code. Voice isn't about replacing typing - it's about being available when typing isn't.

Perfect for:

  • Walking to your next meeting
  • Cooking while debugging
  • Giving your eyes a break after hours of screen time
  • Holding a coffee (or a dog)
  • Any moment when your hands or eyes are busy

See It In Action

VoiceMode Demo

Quick Start

Requirements: Computer with microphone and speakers

Option 1: Claude Code Plugin (Recommended)

The fastest way for Claude Code users to get started:

# Add the VoiceMode marketplace
claude plugin marketplace add mbailey/voicemode

# Install VoiceMode plugin
claude plugin install voicemode@voicemode

## Install dependencies (CLI, Local Voice Services)

/voicemode:install

# Start talking!
/voicemode:converse

Option 2: Python installer package

Installs dependencies and the VoiceMode Python package.

# Install UV package manager (if needed)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Run the installer (sets up dependencies and local voice services)
uvx voice-mode-install

# Add to Claude Code
claude mcp add --scope user voicemode -- uvx --refresh --from voice-mode voicemode-mcp-launcher

# Optional: Add OpenAI API key as fallback for local services
export OPENAI_API_KEY=your-openai-key

# Start a conversation
claude converse

For manual setup, see the Getting Started Guide.

Features

  • Natural conversations - speak naturally, hear responses immediately
  • Works offline - optional local voice services (Whisper STT, Kokoro TTS)
  • Low latency - fast enough to feel like a real conversation
  • Smart silence detection - stops recording when you stop speaking
  • Privacy options - run entirely locally or use cloud services

Compatibility

Platforms: Linux, macOS, Windows (native or WSL), NixOS Python: 3.10-3.14

Configuration

VoiceMode works out of the box. For customization:

# Set OpenAI API key (if using cloud services)
export OPENAI_API_KEY="your-key"

# Or configure via file
voicemode config edit

See the Configuration Guide for all options.

Permissions Setup (Optional)

To use VoiceMode without permission prompts, add to ~/.claude/settings.json:

{
  "permissions": {
    "allow": [
      "mcp__voicemode__converse",
      "mcp__voicemode__service"
    ]
  }
}

See the Permissions Guide for more options.

Local Voice Services

For privacy or offline use, install local speech services:

  • Whisper.cpp - Local speech-to-text
  • Kokoro - Local text-to-speech with multiple voices

These provide the same API as OpenAI, so VoiceMode switches seamlessly between them.

Installation Details

System Dependencies by Platform
Ubuntu/Debian
sudo apt update
sudo apt install -y ffmpeg gcc libasound2-dev libasound2-plugins libportaudio2 portaudio19-dev pulseaudio pulseaudio-utils python3-dev

WSL2 users: The pulseaudio packages above are required for microphone access.

Fedora/RHEL
sudo dnf install alsa-lib-devel ffmpeg gcc portaudio portaudio-devel python3-devel
macOS
brew install ffmpeg node portaudio
NixOS
# Use development shell
nix develop github:mbailey/voicemode

# Or install system-wide
nix profile install github:mbailey/voicemode
Alternative Installation Methods
From source
git clone https://github.com/mbailey/voicemode.git
cd voicemode
uv tool install -e .
NixOS system-wide
# In /etc/nixos/configuration.nix
environment.systemPackages = [
  (builtins.getFlake "github:mbailey/voicemode").packages.${pkgs.system}.default
];

Troubleshooting

Problem Solution
No microphone access Check terminal/app permissions. WSL2 needs pulseaudio packages.
UV not found Run curl -LsSf https://astral.sh/uv/install.sh | sh
OpenAI API error Verify OPENAI_API_KEY is set correctly
No audio output Check system audio settings and available devices

Save Audio for Debugging

export VOICEMODE_SAVE_AUDIO=true
# Files saved to ~/.voicemode/audio/YYYY/MM/

Documentation

  • Getting Started - Full setup guide
  • Configuration - All environment variables
  • Whisper Setup - Local speech-to-text
  • Kokoro Setup - Local text-to-speech
  • Development Setup - Contributing guide

Full documentation: voicemode.dev

Links

License

MIT - A Failmode Project


mcp-name: dev.voicemode/voicemode

voicemode FAQ

Can I use this to have a hands-free conversation with my assistant?
Yes — you can speak your questions out loud and hear the replies read back to you, without touching the keyboard.
Can I use this without an internet connection?
Yes — it can run entirely on your own computer using free, built-in speech tools, so no account or internet connection is required.
Which apps does this work in?
It is built for Claude Code, and it also works with other AI tools that support the same connection standard, including assistants built on Gemini or OpenAI models.
Do I need an account or an API key?
No account is required for the offline option. If you want faster, cloud-based voices, you can optionally add a free OpenAI key.
How hard is it to set up?
It takes a short setup step where you paste one small command into your app's settings, so it is easier than a full developer installation but not fully automatic.
Do I need any special hardware?
Just a computer with a working microphone and speakers — no extra equipment is required.
Will people around me be able to hear my conversation?
Yes — voice conversations happen out loud through your speakers, so it works best somewhere you are comfortable talking, or with headphones for privacy.
Can I switch back to typing whenever I want?
Yes — voice is an option alongside typing, so you can switch back at any time.