Skip to main content
Glama

langlearn-tts

License CI PyPI Python

A Claude Desktop extension that gives Claude the ability to speak. Ask Claude to pronounce words, generate audio flashcards, or run a full language lesson with audio — in 70+ languages.

Status (2026-02-21)

  • Core CLI and MCP surfaces are working with ElevenLabs, OpenAI TTS, and AWS Polly.

  • Provider defaults and audio variants (word + example) are still being standardized.

  • Claude Desktop directory submission is pending external review.

Related MCP server: H-ear MCP Server

Roadmap

See ROADMAP.md.

Quick Start

1. Get a TTS API key

You need an account with at least one text-to-speech provider:

  • ElevenLabs — best quality, 70+ languages, 5,000+ voices. Free tier: 10K chars/month. (Recommended)

  • OpenAI TTS — good quality, easiest setup, 57 languages, 9 voices.

  • AWS Polly — better quality, 41 languages, 100+ voices, difficult setup (setup guide).

2. Install in Claude Desktop

Download punt-langlearn-tts.mcpb and double-click to install. Claude Desktop will prompt you for your API key and an output directory.

3. Set up a tutor project (optional)

langlearn-tts ships with 28 tutor prompts — one for each combination of 7 languages and 4 levels. Setting up a project gives Claude a tutor persona that generates audio during lessons.

  1. In Claude Desktop, click Projects in the sidebar

  2. Click Create Project and name it (e.g., "German with Herr Schmidt")

  3. Open the project, click Set custom instructions

  4. Copy a prompt from the prompts directory and paste it into the Instructions field

  5. Start a new conversation within that project

Language

High School

1st Year

2nd Year

Advanced

German

Herr Schmidt

Professorin Weber

Professor Hartmann

Professor Becker

Spanish

Profesora Elena

Profesor Garcia

Profesora Carmen

Profesora Reyes

French

Madame Moreau

Professeur Laurent

Professeur Dubois

Professeur Beaumont

Russian

Irina Petrovna

Professor Dmitri

Professor Natasha

Professor Mikhail

Korean

Kim-seonsaengnim

Professor Park

Professor Kim

Professor Yoon

Japanese

Tanaka-sensei

Yamamoto-sensei

Suzuki-sensei

Mori-sensei

Chinese

Laoshi Wang

Professor Chen

Professor Zhang

Professor Wei

Each prompt is calibrated to the student's level, based on Mollick & Mollick's "Assigning AI" framework.

4. Try it out

In any Claude Desktop conversation, try:

"Say 'Guten Morgen' in German"

"Create an audio flashcard: 'good morning' in English, then 'Guten Morgen' in German"

"Synthesize these Spanish words as a merged audio file: hola, gracias, por favor, de nada"

"Generate pair flashcards for these German vocabulary words: strong/stark, house/Haus, book/Buch"

Audio plays automatically after each request. Files are saved to your output directory (~/langlearn-audio by default).

Features

  • Pronounce anything — ask Claude to say a word or phrase and hear it spoken aloud

  • Audio flashcards — Claude creates an MP3 with English first, then the target language, with a pause between them

  • Vocabulary lists — give Claude a list of words and get back individual or merged audio files

  • 70+ languages — German, Spanish, French, Russian, Korean, Japanese, Chinese, and many more

  • Tutor mode — 28 built-in tutor personas that teach with audio throughout the lesson

  • Multiple voices — each provider offers a range of voices; ask Claude to use a specific one by name

  • Adjustable speed — audio defaults to 90% speed so learners can hear pronunciation clearly

Troubleshooting

If something isn't working, ask Claude to run a health check:

"Run the doctor command to check if everything is set up correctly"

Logs are written to ~/.langlearn-tts/logs/langlearn-tts.log (never contains the text you synthesize). See PRIVACY.md for details.


Developer Reference

Everything below is for developers using the CLI, integrating with other MCP clients, or contributing to the project.

Claude Code / CLI

curl -fsSL https://raw.githubusercontent.com/punt-labs/langlearn-tts/14f4194/install.sh | sh

The default provider is AWS Polly. To use a different provider:

LANGLEARN_TTS_PROVIDER=elevenlabs curl -fsSL https://raw.githubusercontent.com/punt-labs/langlearn-tts/14f4194/install.sh | sh
uv tool install punt-langlearn-tts
langlearn-tts install --provider polly
langlearn-tts doctor
curl -fsSL https://raw.githubusercontent.com/punt-labs/langlearn-tts/14f4194/install.sh -o install.sh
shasum -a 256 install.sh
cat install.sh
sh install.sh

Install ffmpeg for audio stitching (pairs, merged batches):

# macOS (requires Homebrew — install from https://brew.sh if needed)
brew install ffmpeg

# Linux — see https://ffmpeg.org/download.html for your distro

# Windows
winget install --id Gyan.FFmpeg

Claude Desktop setup via CLI

langlearn-tts install

Writes to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS). Options: --provider NAME, --output-dir PATH, --uvx-path PATH. Restart Claude Desktop after running.

Or add manually:

{
  "mcpServers": {
    "langlearn-tts": {
      "command": "/absolute/path/to/uvx",
      "args": ["--from", "punt-langlearn-tts", "langlearn-tts-server"],
      "env": {
        "LANGLEARN_TTS_OUTPUT_DIR": "/absolute/path/to/output/directory"
      }
    }
  }
}

Claude Desktop does not inherit your shell environment. API keys must be literal values (env var references are not supported). Restart after editing.

Environment variables

Env var

Required

Description

LANGLEARN_TTS_PROVIDER

No

elevenlabs, polly (default when no API key), or openai

ELEVENLABS_API_KEY

For ElevenLabs

Your API key

OPENAI_API_KEY

For OpenAI

Your API key

LANGLEARN_TTS_OUTPUT_DIR

No

Output directory (default: ~/langlearn-audio)

LANGLEARN_TTS_MODEL

No

Model name. ElevenLabs: eleven_v3 (default). OpenAI: tts-1, tts-1-hd

For Polly, AWS credentials are read from ~/.aws/credentials.

CLI Usage

# Single synthesis
langlearn-tts synthesize "Guten Morgen" --voice daniel -o morning.mp3

# Custom speech rate (percentage, default 90)
langlearn-tts synthesize "Привет" --voice tatyana --rate 70 -o privet.mp3

# ElevenLabs with voice settings
langlearn-tts synthesize "Guten Morgen" --voice Rachel \
  --stability 0.5 --similarity 0.7 --style 0.3 --speaker-boost

# Pair: English + German stitched with a pause
langlearn-tts synthesize-pair "good morning" "Guten Morgen" \
  --voice1 joanna --voice2 daniel -o pair.mp3

# Batch from JSON file (["hello", "world", "good morning"])
langlearn-tts synthesize-batch words.json -d output/

# Batch merged into single file
langlearn-tts synthesize-batch words.json -d output/ --merge --pause 800

# Pair batch from JSON file ([["strong", "stark"], ["house", "Haus"]])
langlearn-tts synthesize-pair-batch pairs.json -d output/

# Browse AI tutor prompts
langlearn-tts prompt list
langlearn-tts prompt show german-high-school | pbcopy

Voices

ElevenLabs — 5,000+ voices. Any voice works with any language. You can also pass a voice ID directly (the 20-character string from the ElevenLabs dashboard). Voice settings: --stability, --similarity, --style (0.0–1.0), --speaker-boost (flag).

AWS Polly — 93 voices from the AWS Polly voice list. Each voice is trained for a specific language. Engine (neural, standard, generative, long-form) is selected automatically.

OpenAI TTS — 9 voices: alloy, ash, coral, echo, fable, onyx, nova, sage, shimmer. Default model: tts-1. Use --model tts-1-hd for higher quality.

All voice names are case-insensitive.

MCP Tools

Tool

Description

synthesize

Single text to MP3

synthesize_batch

Multiple texts, optionally merged

synthesize_pair

Two texts stitched with a pause

synthesize_pair_batch

Multiple pairs, optionally merged

Each tool accepts auto_play (default: true) to play audio immediately after synthesis.

Other MCP clients

langlearn-tts works with any MCP client that supports stdio transport. Use the server command uvx --from punt-langlearn-tts langlearn-tts-server with the environment variables above. Find your uvx path with which uvx — all paths must be absolute.

Development

git clone https://github.com/punt-labs/langlearn-tts.git
cd langlearn-tts
uv sync --all-extras

uv run pytest tests/ -v
uv run ruff check src/ tests/
uv run ruff format src/ tests/
uv run mypy src/ tests/
uv run pyright src/ tests/

License

MIT

Available Tools

4 tools
synthesizeA

Synthesize text to an MP3 audio file.

Args: text: The text to convert to speech. With ElevenLabs eleven_v3, you can embed audio tags in square brackets anywhere in the text to control delivery — e.g. [tired], [excited], [whisper], [sad], [sigh], [laughs], [dramatic tone]. Tags are free-form; the model interprets them as performance cues. Combine with punctuation (ellipsis for pauses, ! for emphasis) for best results. Tags only work with ElevenLabs eleven_v3 model. voice: Voice name. Default: provider's default voice (currently matilda for ElevenLabs, joanna for Polly, nova for OpenAI). If language is provided without voice, a suitable default voice for that language is selected automatically. language: ISO 639-1 language code (e.g. 'de', 'ko', 'fr'). Enables language-aware voice selection and validation. With Polly, validates voice-language compatibility. With ElevenLabs/OpenAI, passed through (voices are multilingual). rate: Speech rate as percentage (90 = 90% speed, good for language learners). Defaults to 90. ElevenLabs ignores rate; use audio tags like [rushed] or [drawn out] instead. auto_play: Open the file in the default audio player after synthesis. Defaults to true. output_path: Full path for the output file. If not provided, a file is auto-generated in output_dir. output_dir: Directory for output. Defaults to TTS_OUTPUT_DIR env var or ~/langlearn-audio/. stability: ElevenLabs voice stability (0.0-1.0). Ignored by other providers. Defaults to provider default. similarity: ElevenLabs voice similarity boost (0.0-1.0). Ignored by other providers. Defaults to provider default. style: ElevenLabs voice style/expressiveness (0.0-1.0). Ignored by other providers. Defaults to provider default. speaker_boost: ElevenLabs speaker boost toggle. Ignored by other providers. Defaults to provider default.

Returns: JSON string with path, text, voice, and language fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
rateNo
textYes
styleNo
voiceNo
languageNo
auto_playNo
stabilityNo
output_dirNo
similarityNo
output_pathNo
speaker_boostNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it delivers: it discloses provider-specific default voices, language-aware voice selection, audio tag constraints and model restriction, auto_play default, output_path/output_dir fallback behavior, the TTS_OUTPUT_DIR environment variable, and that stability/similarity/style/speaker_boost are ignored by non-ElevenLabs providers. It also states the return JSON fields. This is far beyond minimal.

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

Conciseness2/5

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

The first sentence is a good front-loaded summary and Args/Returns structure helps, but the description contains repeated blocks: audio-tag guidance and voice/language/rate sections appear twice, bloating the text and risking confusion. It needs deduplication before it can earn a higher score.

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 tool with 11 parameters, no annotations, and no schema descriptions, the description covers essentially every parameter and the return value. It is only held back by the duplication and by not explicitly routing the agent to sibling tools for batch/pair workflows.

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

Parameters5/5

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

Schema description coverage is 0%, so every parameter must be documented in prose. The description covers all 11 parameters with defaults, allowed types/ranges, provider-specific behavior, and output implications, adding meaning the schema cannot convey: default voice names, ignored-by-other-providers flags, and env-var fallback.

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

Purpose4/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: 'Synthesize text to an MP3 audio file.' It clearly identifies the tool as text-to-speech. However, it never explicitly mentions single-item synthesis or contrasts with siblings synthesize_batch/synthesize_pair, so an agent must infer the distinction from sibling names alone.

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?

No guidance is given for when to choose this tool over its batch/pair siblings. The description focuses on parameter mechanics (voices, tags, output paths) and never states 'use this for a single utterance' or 'use synthesize_batch for multiple texts.' The usage is only implied by the singular 'text' and sibling names.

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

synthesize_batchA

Synthesize multiple texts to MP3 files.

Args: texts: List of texts to synthesize. With ElevenLabs eleven_v3, embed audio tags like [tired], [excited], [whisper] in text. voice: Voice name for all texts. Default: provider's default voice (currently matilda for ElevenLabs, joanna for Polly, nova for OpenAI). If language is provided without voice, auto-selects. language: ISO 639-1 language code (e.g. 'de', 'ko'). rate: Speech rate as percentage. Defaults to 90. merge: If true, produce one merged file instead of separate files per text. Defaults to false. pause_ms: Pause between segments in milliseconds when merging. Defaults to 500. auto_play: Open the file(s) in the default audio player after synthesis. Defaults to true. output_dir: Directory for output files. Defaults to TTS_OUTPUT_DIR env var or ~/langlearn-audio/. stability: ElevenLabs voice stability (0.0-1.0). similarity: ElevenLabs voice similarity boost (0.0-1.0). style: ElevenLabs voice style/expressiveness (0.0-1.0). speaker_boost: ElevenLabs speaker boost toggle.

Returns: JSON string with list of results, each containing path, text, voice, and language fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
rateNo
mergeNo
styleNo
textsYes
voiceNo
languageNo
pause_msNo
auto_playNo
stabilityNo
output_dirNo
similarityNo
speaker_boostNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the full disclosure burden and does it well. It reveals defaults (rate=90, merge=false, auto_play=true, pause_ms=500), provider-specific voice defaults, the auto-select behavior when language is given without voice, the side effect of opening files via auto_play, and the exact return format. It does not mention overwrite behavior or rate limits, but for a synthesis tool this is a strong disclosure.

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 organized as a docstring with an opening one-sentence summary, a clean Args list, and a Returns section. Despite covering many parameters, every line adds value and the structure makes it easy to scan. No filler or tautology is present.

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?

Given the complexity of 12 parameters and no annotations, the description covers essentially everything needed to call the tool: all params, defaults, merge behavior, return payload, and output location. It stops short of stating file overwrite policy or constraints on input array size, but these are minor for the tool's context.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate for all 12 parameters. It does so thoroughly: each parameter gets a clear meaning, default, or conditional behavior beyond the raw schema. For example, it explains the [tired]/[whisper] audio tags for texts, provider-specific voice defaults, and the role of pause_ms when merging. This fully bridges the schema gap.

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

Purpose4/5

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

The description states a specific verb and resource: 'Synthesize multiple texts to MP3 files.' This clearly establishes the batch nature of the tool and the output format. However, it does not explicitly distinguish itself from sibling tools like synthesize_pair_batch, so an agent must infer the differentiation from the word 'multiple' and merge semantics.

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

Usage Guidelines3/5

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

The description implies batch usage by saying 'multiple texts' and describing merge behavior across texts, but it never explicitly states when to choose this tool over siblings such as synthesize or synthesize_pair. It offers no exclusions or alternative routing, so the usage context is present only implicitly.

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

synthesize_pairA

Synthesize a pair of texts and stitch them into one MP3.

Creates [text1 audio] [pause] [text2 audio]. Use for language learning pairs like "strong" (English) + "stark" (German).

Args: text1: First text (typically English). With ElevenLabs eleven_v3, embed audio tags like [tired], [excited], [whisper] in text. text2: Second text (typically target language). Same audio tag support as text1. voice1: Voice for text1. Defaults to provider's default voice. If lang1 is provided without voice1, auto-selects. voice2: Voice for text2. Defaults to provider's default voice. If lang2 is provided without voice2, auto-selects. lang1: ISO 639-1 language code for text1 (e.g. 'en'). lang2: ISO 639-1 language code for text2 (e.g. 'de'). rate: Speech rate as percentage. Defaults to 90. pause_ms: Pause between the two texts in milliseconds. Defaults to 500. auto_play: Play the audio after synthesis. Defaults to true. output_path: Full path for the output file. output_dir: Directory for output. Defaults to TTS_OUTPUT_DIR env var or ~/langlearn-audio/. stability: ElevenLabs voice stability (0.0-1.0). similarity: ElevenLabs voice similarity boost (0.0-1.0). style: ElevenLabs voice style/expressiveness (0.0-1.0). speaker_boost: ElevenLabs speaker boost toggle.

Returns: JSON string with path, text, voice, and language fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
rateNo
lang1No
lang2No
styleNo
text1Yes
text2Yes
voice1No
voice2No
pause_msNo
auto_playNo
stabilityNo
output_dirNo
similarityNo
output_pathNo
speaker_boostNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the disclosure burden and does it well: it describes the concatenated audio structure, the pause, voice auto-selection when lang is provided, defaults for rate/pause/auto_play, output directory fallback to TTS_OUTPUT_DIR, and the returned JSON fields. It does not cover overwrite behavior or auth requirements, but the main behavioral traits are disclosed.

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 front-loaded with a one-sentence purpose, followed by a concrete use example, then a clean Args list covering all parameters, and ends with a Returns line. For a 15-parameter tool, its length is justified and every section earns its place.

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?

Given the high complexity (15 params), no annotations, 0% schema description coverage, and only a summary output schema, the description provides enough detail to invoke the tool correctly: required texts, optional languages/voices/audio settings, output path controls, and return shape. Nothing critical for a correct call is missing.

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

Parameters5/5

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

Schema description coverage is 0%, and the description compensates fully by documenting every one of the 15 parameters: meanings, defaults, allowed ranges, and relationships such as 'If lang1 is provided without voice1, auto-selects.' This is exactly what an agent needs beyond the bare schema.

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

Purpose4/5

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

The description states a specific verb and resource: 'Synthesize a pair of texts and stitch them into one MP3' and gives the exact output shape '[text1 audio] [pause] [text2 audio]'. This clearly separates it from the single-text synthesize tool, but it does not explicitly contrast with synthesize_pair_batch, so it stops short of full sibling differentiation.

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 gives an explicit intended use case — language learning pairs like 'strong' (English) + 'stark' (German) — which tells an agent when the tool is appropriate. It does not mention when to prefer synthesize_pair_batch or synthesize_batch instead, so exclusions are missing.

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

synthesize_pair_batchA

Synthesize multiple text pairs and stitch each into MP3 files.

Each pair becomes [text1 audio] [pause] [text2 audio]. Use for vocabulary lists like [["strong","stark"], ["house","Haus"]].

Args: pairs: List of [text1, text2] pairs. With ElevenLabs eleven_v3, texts can include audio tags like [tired], [excited]. voice1: Voice for all first texts. Defaults to provider's default. If lang1 is provided without voice1, auto-selects. voice2: Voice for all second texts. Defaults to provider's default. If lang2 is provided without voice2, auto-selects. lang1: ISO 639-1 language code for first texts (e.g. 'en'). lang2: ISO 639-1 language code for second texts (e.g. 'de'). rate: Speech rate as percentage. Defaults to 90. pause_ms: Pause between pair segments in milliseconds. Defaults to 500. merge: If true, produce one merged file instead of separate files per pair. Defaults to false. auto_play: Play the audio after synthesis. Defaults to true. output_dir: Directory for output files. Defaults to TTS_OUTPUT_DIR env var or ~/langlearn-audio/. stability: ElevenLabs voice stability (0.0-1.0). similarity: ElevenLabs voice similarity boost (0.0-1.0). style: ElevenLabs voice style/expressiveness (0.0-1.0). speaker_boost: ElevenLabs speaker boost toggle.

Returns: JSON string with list of results.

ParametersJSON Schema
NameRequiredDescriptionDefault
rateNo
lang1No
lang2No
mergeNo
pairsYes
styleNo
voice1No
voice2No
pause_msNo
auto_playNo
stabilityNo
output_dirNo
similarityNo
speaker_boostNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it does so thoroughly. It states that files are stitched with a pause, that auto_play defaults to true, that merge changes output from separate files to one merged file, and that output_dir falls back to TTS_OUTPUT_DIR or ~/langlearn-audio/. These details expose important side effects beyond the schema.

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 front-loaded with a clear one-sentence summary and a concrete example, followed by a compact Args section and a Returns note. For a 14-parameter tool, the length is justified and every section earns its place without redundant fluff.

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?

Given the tool's complexity, the zero annotation coverage, and the 0% schema description coverage, the description is remarkably complete. It covers behavior, defaults, output format, provider-specific features, and return type, leaving nothing an agent needs to call it correctly.

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

Parameters5/5

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

The schema has 0% description coverage, so the description must compensate, and it does: every parameter is explained with defaults, units, supported formats, and ElevenLabs-specific behavior. For example, it explains rate as a percentage, pause_ms as milliseconds, lang codes as ISO 639-1, and how voice1/voice2 auto-select when lang is provided.

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: 'Synthesize multiple text pairs and stitch each into MP3 files.' It also shows the exact output pattern ('[text1 audio] [pause] [text2 audio]') and a concrete vocabulary-list example, which makes the tool's purpose unmistakable and distinguishes it from the sibling tools synthesize, synthesize_batch, and synthesize_pair.

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?

The description gives clear usage context: 'Use for vocabulary lists like...' and clarifies that the tool handles multiple pairs, implying it is for pair-based, batched synthesis. It does not explicitly name alternatives or state when not to use it, but the context is strong enough for an agent to select it correctly.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv0.7.2
    • First observedsynthesize
    • First observedsynthesize_batch
    • First observedsynthesize_pair
    • First observedsynthesize_pair_batch

TDQS

A4.3/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: single text, batch texts, a single pair, and multiple pairs. The descriptions explicitly differentiate use cases, making confusion unlikely.

Naming Consistency5/5

All tools follow the same verb-based pattern, starting with 'synthesize' and adding descriptive suffixes (batch, pair, pair_batch). The naming is fully consistent and predictable.

Tool Count5/5

Four tools provide a focused yet complete range of synthesis options, from single to batch to pair-based. This is well-scoped for a TTS server without being bloated.

Completeness4/5

The toolset covers single, batch, pair, and pair-batch synthesis comprehensively. The only notable omission is a way to discover available voices or languages without synthesizing, which would aid agents in choosing parameters.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers