MCP Tts Voicevox MCP Server

The `voicevox_speak_player` tool uses [MCP Apps](https://github.com/modelcontextprotocol/ext-apps) to render an interactive audio player directly

Local serverstdioGo

What is the MCP Tts Voicevox MCP server?

The voicevox_speak_player tool uses MCP Apps to render an interactive audio player directly inside the chat. The mcp tts voicevox mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 13 defined tools rather than through you.

What it actually does

The voicevox_speak_player tool uses MCP Apps to render an interactive audio player directly inside the chat. Unlike the standard voicevox_speak tool which plays audio on the server, audio is played on the client side (in the browser/app) — no audio device needed on the server.

  • Client-side playback — — Audio plays in Claude Desktop's chat, not on the server. Works even over remote connections
  • Play/Pause controls — — Full playback controls embedded in the conversation
  • Multi-speaker dialogue — — Sequential playback of multiple speakers in one player with track navigation
  • Speaker switching — — Change the voice of any segment directly from the player UI
  • Segment editing — — Adjust speed, volume, intonation, pause length, and pre/post silence per segment
  • Accent phrase editing — — Edit accent positions and mora pitch directly in the UI

Its toolset

Everything the assistant can do here goes through one of these:

  • speak_player — Create a new player session and display the UI. Returns viewUUID
  • resynthesize_player — Update all segments for an existing player (new viewUUID each call)
  • get_player_state — Read the current player state (paginated) for AI tuning
  • open_dictionary_ui — Open the user dictionary manager UI
  • Group — Tools
  • player — speak_player, resynthesize_player, get_player_state, open_dictionary_ui
  • dictionary — get_accent_phrases, get_user_dictionary, add_user_dictionary_word, update_user_dictionary_word, delete_user_dictionary_word
  • file — synthesize_file
  • apps — speak_player, resynthesize_player, open_dictionary_ui (MCP App UI tools)
  • Features — Export behavior by environment: - Save and open always exports WAV files. If opening the file explorer is not supported, export still succeeds and
  • Requirements — The Requirements tool exposed by this server
  • Setup — The Setup tool exposed by this server

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @kajidog/mcp-tts-voicevox on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need 5 environment variables: VOICEVOX_DISABLED_TOOLS, VOICEVOX_DISABLED_GROUPS, VOICEVOX_URL, MCP_HTTP_HOST, MCP_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 20.0.0 or higher (or Bun) or Docker - VOICEVOX Engine (must be running; included in Docker Compose) - ffplay (optional, recommended — not needed with Docker)

When to reach for it

Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Tts Voicevox's toolset — speak_player, resynthesize_player, get_player_state and 10 more — is a fair guide to whether it matches your workflow. It is maintained by kajidog; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • 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 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Tts Voicevox.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp tts voicevox mcp server does with a few real requests.

Available tools

ToolWhat it does
speak_playerCreate a new player session and display the UI. Returns viewUUID.
resynthesize_playerUpdate all segments for an existing player (new viewUUID each call).
get_player_stateRead the current player state (paginated) for AI tuning.
open_dictionary_uiOpen the user dictionary manager UI.
GroupTools
playerspeak_player, resynthesize_player, get_player_state, open_dictionary_ui
dictionaryget_accent_phrases, get_user_dictionary, add_user_dictionary_word, update_user_dictionary_word, delete_user_dictionary_word, add_user_dictionary_words, update_user_dictionary_words
filesynthesize_file
appsspeak_player, resynthesize_player, open_dictionary_ui (MCP App UI tools)
FeaturesExport behavior by environment: - Save and open always exports WAV files. If opening the file explorer is not supported, export still succeeds and the save path is shown in the UI. - Choose output folder uses a native di
RequirementsThe Requirements tool exposed by this server.
SetupThe Setup tool exposed by this server.
CommandsThe Commands tool exposed by this server.

How to install the MCP Tts Voicevox MCP server

{
  "mcpServers": {
    "tts": {
      "type": "http",
      "url": "http://172.29.176.1:3000/mcp"
    }
  }
}

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

Configuration

  • Node.js 20.0.0 or higher (or Bun) or Docker - VOICEVOX Engine (must be running; included in Docker Compose) - ffplay (optional, recommended — not needed with Docker)
VariableDescriptionRequired
VOICEVOX_DISABLED_TOOLSConfiguration value read at startup.Optional
VOICEVOX_DISABLED_GROUPSConfiguration value read at startup.Optional
VOICEVOX_URLEndpoint or connection string the server talks to.Yes
MCP_HTTP_HOSTEndpoint or connection string the server talks to.Optional
MCP_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Tts Voicevox to speak player.
  • Use MCP Tts Voicevox to resynthesize player.
  • Use MCP Tts Voicevox to get player state.

Frequently asked questions

It connects MCP Tts Voicevox to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (speak_player, resynthesize_player, get_player_state, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Tts Voicevox directly.