Vv MCP MCP Server

VOICEVOX MCP Server for text-to-speech synthesis with Claude

Local serverstdio

What is the Vv MCP MCP server?

Most AI and media services work still happens through a UI a human drives. Vv MCP MCP server moves it into the conversation instead. VOICEVOX MCP Server for text-to-speech synthesis with Claude.

The short version

VOICEVOX MCP Server - Claude DesktopとClaude Codeで音声合成を利用するためのMCPサーバー

The tools it exposes

The server publishes 14 tools. What each one is for:

  • macOS — afplayを使用(追加インストール不要)
  • Linux — pw-play(PipeWire)または paplay(PulseAudio)が必要
  • PipeWire — - Arch Linux: pacman -S pipewire
  • Fedora — dnf install pipewire-utils
  • PulseAudio — - Arch Linux: pacman -S pulseaudio
  • Windows — PowerShellを使用(追加インストール不要)
  • say — テキストを音声合成して再生(非同期実行)
  • list_voices — 利用可能な音声一覧を取得
  • get_queue_status — 再生キューの状態を確認
  • clear_queue — 再生キューをクリア
  • get_voices_in_use — 現在使用中の音声IDのリストを取得(全プロセス共通)
  • get_random_unused_voice — 使用されていない音声をランダムに1つ取得

What it needs from you

Configuration is passed through the environment: VOICEVOX_URL, DEFAULT_VOICE_ID, DEFAULT_SPEED. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on npm as @arrow2nd/vv-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Vv MCP's toolset — macOS, Linux, PipeWire and 11 more — is a fair guide to whether it matches your workflow. It is maintained by arrow2nd; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Vv MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
macOSafplayを使用(追加インストール不要)
Linuxpw-play(PipeWire)または paplay(PulseAudio)が必要
PipeWire- Arch Linux: pacman -S pipewire
Fedoradnf install pipewire-utils
PulseAudio- Arch Linux: pacman -S pulseaudio
WindowsPowerShellを使用(追加インストール不要)
sayテキストを音声合成して再生(非同期実行)
list_voices利用可能な音声一覧を取得
get_queue_status再生キューの状態を確認
clear_queue再生キューをクリア
get_voices_in_use現在使用中の音声IDのリストを取得(全プロセス共通)
get_random_unused_voice使用されていない音声をランダムに1つ取得
get_session_voiceこのセッションで使用する音声を取得(セッション毎に固定)
useSessionVoicetrue - セッション音声を使用(voiceIdは無視される)

How to install the Vv MCP MCP server

{
  "mcpServers": {
    "vv-mcp": {
      "command": "npx",
      "args": ["-y", "@arrow2nd/vv-mcp"],
      "env": {
        "VOICEVOX_URL": "http://localhost:50021",
        "DEFAULT_VOICE_ID": "47",
        "DEFAULT_SPEED": "1.0"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
VOICEVOX_URLEndpoint or connection string the server talks to.Yes
DEFAULT_VOICE_IDConfiguration value read at startup.Optional
DEFAULT_SPEEDConfiguration value read at startup.Optional

Example prompts to try

  • Use Vv MCP to macOS.
  • Use Vv MCP to Linux.
  • Use Vv MCP to PipeWire.

Frequently asked questions

It connects Vv MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (macOS, Linux, PipeWire, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Vv MCP directly.