text-to-speech
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TTS_OUTPUT_DIR | No | Where MP3s are written when no output_path is given | ./output |
| TTS_MAX_RETRIES | No | Max synthesis attempts before failing | 3 |
| TTS_DEFAULT_LANG | No | Default language code | en |
| TTS_RETRY_BACKOFF | No | Base backoff seconds (1s, 2s, 4s, …) | 1.0 |
| TTS_DEFAULT_ACCENT | No | Default accent TLD | com |
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 |
|---|---|
| text_to_speechA | Convert text into spoken audio (MP3) using Google TTS (gTTS). |
| list_languagesA | List the language codes and names supported for text_to_speech. |
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 2 tools
The two tools have clearly distinct purposes: one lists supported languages, and the other converts text to speech. There is no overlap or ambiguity.
Both tools follow a consistent verb_noun pattern (list_languages, text_to_speech), making the naming predictable and intuitive.
With only two tools, the server is quite thin but still covers the core functionality for a simple text-to-speech service. The count is borderline for the domain.
The domain is well-covered by listing languages and converting text to speech with various options. No major gaps are apparent, though additional settings tools could be added.