.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/mbailey/voicemode
home/mcp-servers/mbailey/voicemode
mbailey avatar

voicemode

bymbailey· 1 MCP server

Installs

38k

Stars

1.3k

Forks

183

Category

Productivity & Workflow

View on GitHub

TL;DR

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

How to install voicemode?

mbailey/voicemode
$git clone https://github.com/mbailey/voicemode

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install voicemode by running `git clone https://github.com/mbailey/voicemode`, then use it for the current task and follow its documentation at https://github.com/mbailey/voicemode.

Files · 1

View on GitHub
README.md
1# VoiceMode
2 
3> Natural voice conversations with Claude Code (and other MCP capable agents)
4 
5[![PyPI Downloads](https://static.pepy.tech/badge/voice-mode)](https://pepy.tech/project/voice-mode)
6[![PyPI Downloads](https://static.pepy.tech/badge/voice-mode/month)](https://pepy.tech/project/voice-mode)
7[![PyPI Downloads](https://static.pepy.tech/badge/voice-mode/week)](https://pepy.tech/project/voice-mode)
8 
9VoiceMode enables natural voice conversations with Claude Code. Voice isn't about replacing typing - it's about being available when typing isn't.
10 
11**Perfect for:**
12 
13- Walking to your next meeting
14- Cooking while debugging
15- Giving your eyes a break after hours of screen time
16- Holding a coffee (or a dog)
17- Any moment when your hands or eyes are busy
18 
19## See It In Action
20 
21[![VoiceMode Demo](https://img.youtube.com/vi/cYdwOD_-dQc/maxresdefault.jpg)](https://www.youtube.com/watch?v=cYdwOD_-dQc)
22 
23## Quick Start
24 
25**Requirements:** Computer with microphone and speakers
26 
27### Option 1: Claude Code Plugin (Recommended)
28 
29The fastest way for Claude Code users to get started:
30 
31```bash
32# Add the VoiceMode marketplace
33claude plugin marketplace add mbailey/voicemode
34 
35# Install VoiceMode plugin
36claude plugin install voicemode@voicemode
37 
38## Install dependencies (CLI, Local Voice Services)
39 
40/voicemode:install
41 
42# Start talking!
43/voicemode:converse
44```
45 
46### Option 2: Python installer package
47 
48Installs dependencies and the VoiceMode Python package.
49 
50```bash
51# Install UV package manager (if needed)
52curl -LsSf https://astral.sh/uv/install.sh | sh
53 
54# Run the installer (sets up dependencies and local voice services)
55uvx voice-mode-install
56 
57# Add to Claude Code
58claude mcp add --scope user voicemode -- uvx --refresh --from voice-mode voicemode-mcp-launcher
59 
60# Optional: Add OpenAI API key as fallback for local services
61export OPENAI_API_KEY=your-openai-key
62 
63# Start a conversation
64claude converse
65```
66 
67For manual setup, see the [Getting Started Guide](docs/tutorials/getting-started.md).
68 
69## Features
70 
71- **Natural conversations** - speak naturally, hear responses immediately
72- **Works offline** - optional local voice services (Whisper STT, Kokoro TTS)
73- **Low latency** - fast enough to feel like a real conversation
74- **Smart silence detection** - stops recording when you stop speaking
75- **Privacy options** - run entirely locally or use cloud services
76 
77## Compatibility
78 
79**Platforms:** Linux, macOS, Windows (native or WSL), NixOS
80**Python:** 3.10-3.14
81 
82## Configuration
83 
84VoiceMode works out of the box. For customization:
85 
86```bash
87# Set OpenAI API key (if using cloud services)
88export OPENAI_API_KEY="your-key"
89 
90# Or configure via file
91voicemode config edit
92```
93 
94See the [Configuration Guide](docs/guides/configuration.md) for all options.
95 
96## Permissions Setup (Optional)
97 
98To use VoiceMode without permission prompts, add to `~/.claude/settings.json`:
99 
100```json
101{
102 "permissions": {
103 "allow": [
104 "mcp__voicemode__converse",
105 "mcp__voicemode__service"
106 ]
107 }
108}
109```
110 
111See the [Permissions Guide](docs/guides/permissions.md) for more options.
112 
113## Local Voice Services
114 
115For privacy or offline use, install local speech services:
116 
117- **[Whisper.cpp](docs/guides/whisper-setup.md)** - Local speech-to-text
118- **[Kokoro](docs/guides/kokoro-setup.md)** - Local text-to-speech with multiple voices
119 
120These provide the same API as OpenAI, so VoiceMode switches seamlessly between them.
121 
122## Installation Details
123 
124<details>
125<summary><strong>System Dependencies by Platform</strong></summary>
126 
127#### Ubuntu/Debian
128 
129```bash
130sudo apt update
131sudo apt install -y ffmpeg gcc libasound2-dev libasound2-plugins libportaudio2 portaudio19-dev pulseaudio pulseaudio-utils python3-dev
132```
133 
134**WSL2 users**: The pulseaudio packages above are required for microphone access.
135 
136#### Fedora/RHEL
137 
138```bash
139sudo dnf install alsa-lib-devel ffmpeg gcc portaudio portaudio-devel python3-devel
140```
141 
142#### macOS
143 
144```bash
145brew install ffmpeg node portaudio
146```
147 
148#### NixOS
149 
150```bash
151# Use development shell
152nix develop

Preview

mbailey/voicemodembailey/voicemode

# VoiceMode

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

[![PyPI Downloads](https://static.pepy.tech/badge/voice-mode)](https://pepy.tech/project/voice-mode)

[![PyPI Downloads](https://static.pepy.tech/badge/voice-mode/month)](https://pepy.tech/project/voice-mode)

Repombailey/voicemode
TypeMCP Servers
CategoryProductivity & Workflow
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPanthropicasr

Related

6 picks
Type
  1. homeassistant-ai avatarha-mcpComprehensive Model Context Protocol server for managing Home Assistant through AI assistants.MCP ServersJul 2026351k4.1k
  2. taylorwilsdon avatargoogle_workspace_mcpGoogle Workspace MCP server for Gmail, Drive, Calendar, Docs, Sheets, Slides, Forms, Tasks, Chat.MCP ServersJul 2026129k2.9k
  3. basicmachines-co avatarbasic-memoryLocal-first knowledge management with bi-directional LLM sync via Markdown files.MCP ServersJul 202644k3.5k
  4. githejie avatarmcp-server-calculatorA Model Context Protocol server for calculatingMCP ServersMay 202524k153
  5. codefuturist avataremail-mcpIMAP/SMTP email MCP server — 47 tools, IMAP IDLE push, multi-account, AI triage.MCP ServersMay 202622k83
  6. wh1isper avatarmcp-email-serverIMAP and SMTP via MCP ServerMCP ServersJul 202619k294