mcp-simple-voicevox
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-simple-voicevoxspeak 'こんにちは' using speaker 1"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@t09tanaka/mcp-simple-voicevox
MCP (Model Context Protocol) を通じて VOICEVOX のテキスト読み上げ機能を提供するシンプルなサーバーです。
概要
このプロジェクトは、VOICEVOX の音声合成エンジンを MCP ツールとして利用できるようにするサーバー実装です。Claude Code 等の MCP クライアントから、テキストの読み上げ機能を簡単に利用できます。
Related MCP server: voiceroid_daemon-mcp
前提条件
Node.js 18.0.0 以上
VOICEVOX エンジンが起動している必要があります
VOICEVOX 公式サイトから VOICEVOX をダウンロード・インストール
VOICEVOX を起動し、エンジンが
http://localhost:50021で稼働していることを確認
使用方法
MCP クライアント(Claude Code、Claude Desktop 等)の設定ファイルに以下を追加してください。
macOS / Linux / WSL
claude mcp add voicevox -- npx @t09tanaka/mcp-simple-voicevox{
"mcpServers": {
"voicevox": {
"command": "npx",
"args": ["@t09tanaka/mcp-simple-voicevox"]
}
}
}Windows(ネイティブ)
claude mcp add voicevox -- cmd /c npx @t09tanaka/mcp-simple-voicevox{
"mcpServers": {
"voicevox": {
"command": "cmd",
"args": ["/c", "npx", "@t09tanaka/mcp-simple-voicevox"]
}
}
}その他の設定方法は docs/usage.md を参照してください。
speak ツール
テキストを音声で読み上げます。
パラメータ:
text(string, 必須): 読み上げるテキストspeaker(number, 必須): 話者 IDspeedScale(number, オプション): 読み上げ速度のスケール(0.5〜2.0、デフォルト: 1.0)async(boolean, オプション): 非同期再生モード(falseの場合、音声再生の完了を待ちます。デフォルト: true)
使用例:
{
\"text\": \"こんにちは、これはテスト音声です。\",
\"speaker\": 1,
\"speedScale\": 1.3,
\"async\": true
}話者 ID について
VOICEVOX で利用可能な話者 ID は、VOICEVOX エンジンの /speakers エンドポイントから取得できます:
curl http://localhost:50021/speakers一般的な話者 ID(参考):
1: 四国めたん(ノーマル)
2: 四国めたん(あまあま)
3: 四国めたん(ツンツン)
8: 春日部つむぎ(ノーマル)
10: 雨晴はう(ノーマル)
対応プラットフォーム
音声再生は以下のプラットフォームに対応しています:
macOS:
afplayコマンドを使用Linux:
aplayコマンドを使用Windows: PowerShell の
Media.SoundPlayerを使用
トラブルシューティング
VOICEVOX エンジンに接続できない
VOICEVOX アプリケーションが起動しているか確認
http://localhost:50021で VOICEVOX API が利用可能か確認ファイアウォールの設定を確認
Windows で "Connection closed" エラーが発生する
Windows(ネイティブ)では
npxを直接実行できないため、cmd /c経由で実行する必要があります上記の「Windows(ネイティブ)」の設定例を参照してください
音声が再生されない
対応プラットフォームか確認
音声再生コマンドがインストールされているか確認
Linux:
aplay(alsa-utils)その他のプラットフォームは通常デフォルトで利用可能
ライセンス
Apache License 2.0
貢献
プルリクエストや Issue の報告は歓迎します。詳細な仕様は docs/specification.md を参照してください。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/t09tanaka/mcp-simple-voicevox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server