Remote voice via VoiceMode Connect. Use when users want to add voice to Claude Code using their phone or web app, without local STT/TTS setup.
Add this skill
npx mdskills install mbailey/voicemode-connectEnables remote voice conversations via cloud platform with clear setup and tool descriptions
1---2name: voicemode-connect3description: Remote voice via VoiceMode Connect. Use when users want to add voice to Claude Code using their phone or web app, without local STT/TTS setup.4---56# VoiceMode Connect78Voice conversations through the voicemode.dev cloud platform. Connect your AI assistant to voice clients (iOS app, web app) without running local STT/TTS services.910## How It Works1112**Agents** (Claude Code, claude.ai) connect via MCP to voicemode.dev.13**Clients** (iOS app, web app) connect via WebSocket.14The platform routes voice messages between them.1516## Quick Setup1718### 1. Add the MCP Server1920Add to your Claude Code MCP settings (`~/.claude/settings.json`):2122```json23{24 "mcpServers": {25 "voicemode-dev": {26 "command": "npx",27 "args": ["-y", "mcp-remote", "https://voicemode.dev/mcp"]28 }29 }30}31```3233### 2. Authenticate3435When you first use a Connect tool, Claude Code will prompt for OAuth authentication. Sign in with your voicemode.dev account.3637### 3. Connect a Client3839Open the iOS app or web dashboard (voicemode.dev/dashboard) and sign in with the same account.4041### 4. Start Talking4243Use the `status` tool to see connected devices, then use `converse` to have a voice conversation.4445## MCP Tools4647| Tool | Description |48|------|-------------|49| `status` | Show connected devices and agents |50| `converse` | Two-way voice conversation via connected client |5152## Relationship to Local VoiceMode5354| Feature | Local VoiceMode | VoiceMode Connect |55|---------|-----------------|-------------------|56| STT/TTS | Local (Whisper/Kokoro) | Client device (phone/browser) |57| Setup | Install services | Just add MCP server |58| Internet | Optional | Required |59| Latency | Lower | Higher |60| Mobile voice | No | Yes |6162**Use both**: Local VoiceMode for desktop voice, Connect for mobile voice.6364## Documentation6566- [Overview](../../docs/connect/README.md) - What is VoiceMode Connect67- [Architecture](../../docs/connect/architecture.md) - How agents and clients connect68- [Claude Code Setup](../../docs/connect/setup/claude-code.md) - Detailed setup guide69- [MCP Tools Reference](../../docs/connect/reference/mcp-tools.md) - Tool parameters7071## Open Questions7273- How do multiple agents on the same account interact?74- What happens when multiple clients are connected?75- How is the target device selected for `converse`?7677These are documented in [docs/connect/](../../docs/connect/) as we learn more.78
Full transparency — inspect the skill content before installing.