Skip to main content
Glama

text_to_speech

Convert text to spoken audio using MiniMax voices and get a shareable download URL valid for 7 days. Select voice, speed, and model to match your needs.

Instructions

Convert text to speech (MiniMax voices). Returns the audio file URL (valid 7 days). Costs about $0.004 for a short line; billed at $0.04 per 1000 characters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesThe text to speak.
modelNoTTS model id, e.g. minimax-speech-02-turbo (fast), minimax-speech-02-hd / minimax-speech-2.8-hd (higher quality). Note: eleven-tts-* models are NOT available here — they stream from POST /v1/tts/stream instead.minimax-speech-02-turbo
speedNoOptional speaking rate, 0.5-2 (1 = normal).
voice_idNoVoice id. English: English_Trustworthy_Man, English_Graceful_Lady, Serene_Woman. Chinese: male-qn-qingse, female-tianmei. Full list: GET /v1/minimax/voices.English_Trustworthy_Man

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations supplied, the description carries the full disclosure burden. It adds meaningful non-obvious behavior: the result is a URL rather than a streamed file, the URL expires after 7 days, and the operation has real monetary cost. It does not cover latency, failure modes, or rate limits, but the disclosed behaviors are valuable.

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?

Two sentences front-load the core action and then deliver the most important behavioral details: output URL, expiry, and cost. Every sentence earns its place with no redundant filler.

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

Completeness4/5

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

For a simple 4-parameter tool with full schema documentation and no output schema, the description covers the return format, URL validity, and cost. The main missing piece is explicit routing guidance versus streaming or other siblings, but the essential invocation context is present.

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

Parameters3/5

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

Schema description coverage is 100%, and every parameter already has a type, default, and explanatory description. The tool description adds no parameter-specific semantic content beyond the schema, so the baseline score of 3 is appropriate.

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 opens with a specific verb and resource: 'Convert text to speech (MiniMax voices).' It clearly differentiates this audio tool from the sibling media tools (generate_image, generate_video) and chat, and adds concrete return behavior ('Returns the audio file URL').

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives, and no mention of exclusions such as streaming TTS via a sibling endpoint. The cost information is useful but does not help the agent choose between text_to_speech and related tools.

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