text-to-speech

text-to-speech

Enables text-to-speech conversion using Google Translate's TTS, supporting many languages and accents, and saving MP3 files.

Category
Visit Server

README

Text-to-Speech MCP Server

An MCP server that exposes a text-to-speech tool, powered by the free, no-API-key gTTS library (which wraps Google Translate's internal TTS endpoint).

  • Free — no API key, no billing, no GCP account.
  • Many languages — English, Bengali, Spanish, and ~60 more.
  • File output — saves an MP3 and returns its path.
  • Resilient — retries transient/rate-limit failures with exponential backoff.

Note: gTTS uses an undocumented Google endpoint. It requires internet access and can rate-limit or change without notice — great for personal/internal use, less suited to high-volume production. The engine is isolated in engine.py so it can be swapped for Google Cloud TTS or an offline engine later.

Requirements

  • uv
  • Python 3.12 (uv will provision it)

Setup

uv sync

This creates .venv/ and installs the project (and its deps: gtts, mcp).

Optional configuration — copy .env.example to .env and edit:

Variable Default Meaning
TTS_OUTPUT_DIR ./output Where MP3s are written when no output_path is given
TTS_MAX_RETRIES 3 Max synthesis attempts before failing
TTS_RETRY_BACKOFF 1.0 Base backoff seconds (1s, 2s, 4s, …)
TTS_DEFAULT_LANG en Default language code
TTS_DEFAULT_ACCENT com Default accent TLD

Run

uv run tts-server
# or
uv run python -m tts_server.server

The server speaks MCP over stdio.

Tools

text_to_speech

Arg Type Default Description
text string — (required) Text to speak
language string en Language code (en, bn, es, …)
slow boolean false Speak more slowly
accent string com Accent TLD: com (US), co.uk (UK), com.au (AU), co.in (India)
output_path string auto Output MP3 path; auto-generated under TTS_OUTPUT_DIR if omitted

Returns: Saved <N> KB MP3 to <path>, or Error: <reason>.

list_languages

No arguments. Returns supported code: name pairs.

Install in an MCP client

This is a standard stdio MCP server, so it works with any MCP-compatible client (Claude Code, Claude Desktop, Cursor, Windsurf, Continue, etc.). Every client needs the same three things:

Field Value
command uv
args ["--directory", "<ABS_PROJECT_PATH>", "run", "tts-server"]
env (optional) e.g. { "TTS_OUTPUT_DIR": "<ABS_OUTPUT_PATH>" }

Replace <ABS_PROJECT_PATH> with the absolute path to this project. Using uv --directory <path> run means the client can launch the server from anywhere and still resolve the right virtual env and .env. Make sure uv is on the client's PATH (or use the absolute path to the uv binary — find it with which uv).

Claude Code (CLI)

# user scope = available in every project; use --scope project for just this repo
claude mcp add text-to-speech --scope user -- \
  uv --directory /abs/path/to/text-to-speech-agent run tts-server

Verify, inspect, or remove:

claude mcp list                 # health check
claude mcp get text-to-speech   # show config
claude mcp remove text-to-speech

Tools load when a session starts, so open a new session after adding.

Claude Desktop

Edit the config file (Settings → Developer → Edit Config, or directly):

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add (see claude_desktop_config.example.json):

{
  "mcpServers": {
    "text-to-speech": {
      "command": "uv",
      "args": ["--directory", "/abs/path/to/text-to-speech-agent", "run", "tts-server"],
      "env": { "TTS_OUTPUT_DIR": "/abs/path/to/text-to-speech-agent/output" }
    }
  }
}

Then fully restart Claude Desktop.

Cursor / Windsurf / other JSON-config clients

These use the same mcpServers JSON shape as Claude Desktop. Add the block above to the client's MCP config (e.g. Cursor: Settings → MCP, or ~/.cursor/mcp.json), then reload the client.

Generic stdio client

Any client that can launch a stdio server: configure it to run

uv --directory /abs/path/to/text-to-speech-agent run tts-server

and (optionally) pass environment variables from the table in Setup.

Troubleshooting

  • Server fails to start / "uv not found" — use the absolute path to uv (which uv) as the command, since GUI clients often don't inherit your shell PATH.
  • Tools don't appear — restart the client (Claude Code: start a new session).
  • MP3s land in the wrong place — set TTS_OUTPUT_DIR in the client's env block (it overrides .env).
  • Synthesis errors — gTTS needs internet and may rate-limit; the server retries automatically, but check connectivity if it persists.

Project layout

src/tts_server/
  server.py   # MCP tools, validation, response shaping
  engine.py   # gTTS wrapper + retry/backoff (only file importing gTTS)
  config.py   # env-driven settings
  utils.py    # filename gen, language validation, file sizing
tests/        # unit tests (retry paths, mocked gTTS)
output/       # generated MP3s

Tests

uv run python -m pytest -q

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured