Simple Voice MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| VOICE_MODEL | No | The voice model to use for text-to-speech. Available models include male voices (ozisan_1, ozisan_2, seinen_2-5, oziisan), female voices (oneesan_1-4, obaatyan_1), girl voices (syouzyo_1-7), and others (syounen_1, zingai_1, sutera). | zingai_1 |
| VOICE_API_BASE | No | Custom API base URL for the voice service |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| sayA | テキストをかわいいマスコットキャラクターのような声で読み上げます。 ユーザーにお知らせするときはこのキャラクターになりきって楽しませながら報告しましょう! 日本語のテキストを音声合成し、WSL環境では自動的にWindows側で再生されます。 英単語が含まれている場合は自動的にカタカナに変換されます。 Args: text: 読み上げたいテキスト(日本語・英語混在可能) Returns: 成功時は"✓"、エラー時はエラーメッセージ |
| add_to_dictionaryB | カスタム辞書に新しい英単語とカタカナ読みのペアを登録します。HDMIやAPIなどの略語や、.pyのような拡張子も登録できます。複数登録する場合はカンマ区切りで指定できます。 |
| remove_from_dictionaryA | カスタム辞書から指定した英単語のエントリを削除します。複数削除する場合はカンマ区切りで指定できます。 |
| list_dictionaryA | カスタム辞書に登録されているすべての英単語と読み方を表示します。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: dictionary management (add, list, remove) and text-to-speech. No overlap or ambiguity.
Dictionary tools follow a consistent 'verb_to_dictionary' pattern, but 'say' deviates without a noun suffix. Overall still readable.
4 tools is well-scoped for a simple voice server, covering dictionary management and one core action.
Core functionality exists (dictionary and TTS), but lacks features like voice selection, speed control, or stop speaking, which may limit usage.