Skip to main content
Glama

generate-speech

Synthesize speech from text and return it inline as an audio content block (clients that can play audio render it; not all MCP clients can). This bills the authenticated user. Find TTS models via list-models with output_modalities=speech, and each model's voices via get-model (supported_voices). Cost is available afterwards via get-generation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputYesText to synthesize
modelYesTTS model slug, e.g. "mistralai/voxtral-mini-tts-2603"
speedNoPlayback speed multiplier; only honored by models that support it
voiceYesVoice identifier (provider-specific); list a model's supported_voices via get-model
response_formatNoAudio output format; defaults to mp3

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotation values, the description discloses a real side effect: 'This bills the authenticated user.' It also explains the inline-audio output and client compatibility caveat, and points to get-generation for cost afterward. That gives the agent materially useful behavioral context that annotations alone do not provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: the core function and output type appear first, followed by billing and the discovery workflow. Each sentence contributes essential operational or discovery information; there is no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a generative audio tool with no output schema, this description covers invocation prerequisites, how to get the right inputs, what to expect in the response, cost implications, and potential client limitations. An agent has enough information to reason about using this tool and checking results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is already 100%, so the baseline is solid. The description adds value by explaining how to find valid model and voice values: find models with output_modalities=speech and fetch supported_voices via get-model. This directly helps an agent select values for required parameters rather than only knowing their types.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb (synthesize) plus a clear resource (speech from text), and explains the audio content-block output. This cleanly distinguishes it from sibling tools like generate-image and transcribe-audio.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It tells an agent the exact discovery workflow: list TTS models via list-models with output_modalities=speech and find voices via get-model. It also calls out a client-side constraint ('not all MCP clients can play audio') that helps decide whether this tool is appropriate. It does not explicitly exclude alternatives such as transcribe-audio, but for generation the intended path is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools are clearly differentiated by resource and action: the eight list-* tools each target a distinct view (models, endpoints, rankings, apps, providers, presets, tasks, benchmarks), and cross-references between them reduce mis-selection. A few mild boundaries exist—list-models and list-benchmarks both include benchmark data, and install-ori-harness vs spawn-ori-eval are both Ori recipe tools—but their detailed descriptions mostly resolve these.

Naming Consistency4/5

The naming is overwhelmingly consistent with a verb_noun pattern using the same prefix set: generate-, get-, list-, send-, along with install-, spawn-, search-, and transcribe-. The only deviation is ping, which is a standard bare health-check tool and does not follow the verb_noun convention.

Tool Count3/5

At 22 tools, the set feels heavier than the ideal 3-15 range, though each tool is arguably purposeful given the broad surface: model catalog, rankings, benchmarks, presets, generation, audio, image, docs, uptime, credits, and Ori workflows. The variety justifies the size to some extent, but the sheer number puts it in borderline territory.

Completeness4/5

Core workflows are well covered: model discovery (get-model, list-models, list-model-endpoints), generation (send-message, generate-image, generate-speech, transcribe-audio), observability (get-credits, get-generation, get-endpoint-uptime-history), and docs. Notable gaps include no create/update/delete for presets and no persistent provider configuration methods, but these are workable since presets are dashboard-managed and providers can be pinned per request.

Resources