Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
EDGE_TTS_RATENoDefault speed (-50% to +100%).+0%
EDGE_TTS_PITCHNoDefault pitch (-50Hz to +50Hz).+0Hz
EDGE_TTS_VOICENoDefault voice name (e.g., uk-UA-OstapNeural, en-US-AriaNeural).uk-UA-OstapNeural
EDGE_TTS_PLAYERNoAudio player to use. Auto-detected by platform if set to 'auto'. Alternatives include ffplay, mpv, afplay, paplay.auto
EDGE_TTS_VOLUMENoDefault volume (-50% to +100%).+0%

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
speakA
Speak text aloud using Microsoft Edge TTS.

Args:
    text: Text to speak
    voice: Voice name (e.g., en-US-AriaNeural, uk-UA-OstapNeural)
    rate: Speech rate (-50% to +100%, e.g., +20%)
    volume: Volume (-50% to +100%, e.g., +10%)
    pitch: Pitch (-50Hz to +50Hz, e.g., +5Hz)

Returns:
    Confirmation message
list_available_voicesB
List available TTS voices.

Args:
    language: Filter by language code (e.g., en, ru, de). Empty for all.

Returns:
    List of voices with their details
get_configB
Get current TTS configuration.

Returns:
    Current settings

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: get_config retrieves settings, list_available_voices provides voice options, and speak performs the core TTS function. The descriptions make it impossible to confuse these three tools.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (get_config, list_available_voices, speak) with clear, descriptive names. The naming convention is uniform throughout the set with no deviations.

Tool Count5/5

Three tools is perfectly appropriate for a TTS server's scope: configuration management, voice discovery, and the core speak functionality. Each tool earns its place without being excessive or insufficient.

Completeness5/5

The tool surface provides complete coverage for the TTS domain: configuration retrieval, voice listing with filtering, and comprehensive speech generation with all key parameters (text, voice, rate, volume, pitch). There are no obvious gaps for typical TTS workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues