gemini-tts
Generates speech audio from text using Google Gemini's text-to-speech capabilities, with configurable voice, style, speed, and accent, saving output as .wav files.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@gemini-ttsGenerate speech saying 'Hello, this is a test' and save it as test.wav"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Gemini TTS MCP — Local Setup
This repository contains the Gemini TTS MCP server used by Claude Desktop.
This guide explains how to set it up locally on macOS.
1. Requirements
You need:
macOS
Claude Desktop
Node.js
npm
A Google Gemini API key
Related MCP server: MCP Audio Server
2. Clone the Repository
Open Terminal and clone the repository:
git clone YOUR_REPOSITORY_URLThen enter the project:
cd YOUR_REPOSITORY_NAMEReplace
YOUR_REPOSITORY_URLandYOUR_REPOSITORY_NAMEwith the actual repository information.
3. Check Node.js
Check whether Node.js is already installed:
node --versionAlso check npm:
npm --versionIf both commands return a version number, you can continue.
If Node.js is not installed, install it before continuing.
4. Install Dependencies
Inside the repository folder, run:
npm installThis installs all dependencies required by the MCP server.
5. Create the .env File
The MCP server needs a Gemini API key.
Inside the project folder, create a .env file:
touch .envOpen it:
nano .envAdd:
GEMINI_API_KEY=YOUR_GEMINI_API_KEYReplace YOUR_GEMINI_API_KEY with your actual Gemini API key.
Save the file:
CTRL + O
ENTER
CTRL + XGetting a Gemini API Key
Create a Gemini API key through Google AI Studio:
https://aistudio.google.com/apikey
Do not commit the .env file to Git.
The repository should already contain .env in .gitignore.
6. Test the MCP Server
From inside the project directory, run:
node src/server.jsIf the server starts without an error about a missing GEMINI_API_KEY, the setup is working.
The server may not display a normal message and may simply keep running.
This is normal.
Stop it with:
CTRL + C7. Configure Claude Desktop
Claude Desktop needs to know where the MCP server is located.
The configuration file is:
~/Library/Application Support/Claude/claude_desktop_config.jsonYou can open it with:
open ~/Library/Application\ Support/Claude/claude_desktop_config.jsonIf the file does not exist, create it.
8. Find Your Node.js Path
Run:
which nodeYou will get something similar to:
/Users/YOUR_USERNAME/.nvm/versions/node/v24.15.0/bin/nodeCopy the path returned by your Mac.
9. Find the MCP Project Path
Inside the repository folder, run:
pwdFor example:
/Users/YOUR_USERNAME/mcp-servers/gemini-tts-mcpYour MCP server file will therefore be:
/Users/YOUR_USERNAME/mcp-servers/gemini-tts-mcp/src/server.js10. Add the MCP Server to Claude Desktop
Add the following to:
claude_desktop_config.jsonExample:
{
"mcpServers": {
"gemini-tts": {
"command": "/Users/YOUR_USERNAME/.nvm/versions/node/v24.15.0/bin/node",
"args": [
"/Users/YOUR_USERNAME/mcp-servers/gemini-tts-mcp/src/server.js"
]
}
}
}Important
Replace both paths with the paths from your own Mac.
You can get them with:
which nodeand:
pwd11. If You Already Have Other MCP Servers
Do not replace your existing configuration.
For example, if you already have:
{
"mcpServers": {
"other-server": {
"command": "..."
}
}
}add gemini-tts alongside it:
{
"mcpServers": {
"other-server": {
"command": "..."
},
"gemini-tts": {
"command": "/Users/YOUR_USERNAME/.nvm/versions/node/v24.15.0/bin/node",
"args": [
"/Users/YOUR_USERNAME/mcp-servers/gemini-tts-mcp/src/server.js"
]
}
}
}12. Restart Claude Desktop
Completely quit Claude Desktop:
CMD + QThen open Claude Desktop again.
13. Verify the MCP Connection
In Claude Desktop, go to:
Settings
→ DeveloperYou should see:
gemini-ttsThe server should show as connected.
The available tools should include:
generate_speech
get_audio_files14. Test Gemini TTS
Open a new Claude conversation and ask:
Use the
gemini-ttsMCP server to generate speech.Generate a test using exactly this text:
"This is a test of the Gemini text to speech setup."
Save the file as:
test-voice
Claude should use the generate_speech tool.
The generated audio should be saved inside the project's:
audio/folder.
15. Generated Audio
Generated .wav files are stored in:
audio/For example:
audio/
├── test-voice.wav
├── college-vs-university.wav
└── scampi-vs-shrimps.wavYou can open the audio folder in Finder with:
open audio16. Default TTS Settings
The MCP server is already configured with the following defaults:
Voice:
AlgenibVocal style: subtle smile
Speaking speed: rapid-fire
Accent: neutral English
Style: energetic, natural and clear
Target format: short-form content such as TikTok and Instagram
No additional configuration is required.
17. Troubleshooting
GEMINI_API_KEY is missing
Make sure the .env file exists inside the repository:
ls -laYou should see:
.envCheck it with:
cat .envIt should contain:
GEMINI_API_KEY=YOUR_GEMINI_API_KEYServer disconnected
First test the server manually:
node src/server.jsIf an error appears, fix that error first.
Also check:
which nodeand:
pwdThen make sure the paths in claude_desktop_config.json are correct.
Claude does not show gemini-tts
Check:
The MCP configuration JSON is valid.
The Node.js path is correct.
The
server.jspath is correct..envexists.GEMINI_API_KEYexists in.env.Claude Desktop has been completely restarted.
18. Quick Setup Checklist
Clone repository
Open repository in Terminal
Run
npm installCreate
.envAdd
GEMINI_API_KEYRun
node src/server.jssuccessfullyRun
which nodeRun
pwdAdd
gemini-ttsto Claude Desktop's MCP configurationRestart Claude Desktop
Check
Settings → DeveloperConfirm
gemini-ttsis connectedGenerate a test voice
Done
Once gemini-tts appears as connected in Claude Desktop, no further setup is required.
Claude can now generate Gemini TTS audio through the MCP server.
### One important change I'd make to your repository
Since **you're giving her the repository**, I'd actually recommend that she clones it into a simple, predictable location, e.g.:
```text
~/mcp-servers/gemini-tts-mcpThen the setup becomes very easy and your Claude config can follow the same structure on both Macs.
Also, don't put your own .env into the repository. The repository should contain something like:
gemini-tts-mcp/
├── src/
│ └── server.js
├── audio/
├── package.json
├── package-lock.json
├── .gitignore
└── README.mdand each person creates their own .env locally with their own Gemini API key.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Generate AI music via the Lacuna Music API from MCP clients like Claude Desktop & Code.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
AI voice generation: text-to-speech and voice cloning from any MCP client.
The Listenetic MCP server is a remote, cloud-hosted server that enables AI assistants like ChatGPT and Claude to convert articles, documents, websites, and videos into high-quality AI-generated audio. It provides multi-format support for text and binary files, natural-sounding text-to-audio conversion using AI, and specialized processing for SSML, markup, markdown, and various media formats through three core tools: listentic_supported_mimetypes, listentic_add_content_text, and listentic_add_content_binary.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables Claude Desktop and other MCP clients to generate images, videos, music, and audio using Fal.ai models. Supports text-to-image generation, video creation, music composition, text-to-speech, audio transcription, and image enhancement through natural language prompts.1852MIT
- AlicenseNot gradedqualityDmaintenanceEnables text-to-speech conversion with smart language detection (using Google TTS for Chinese) and audio file playback with playback controls for Claude Desktop.2MIT
- AlicenseNot gradedqualityBmaintenanceEnables text-to-speech conversion using OpenAI's TTS API, with inline audio playback and history within MCP hosts like Claude.4BSD 4-Clause "Original" or "Old"

leanvox-mcpofficial
AlicenseNot gradedqualityDmaintenanceEnables text-to-speech generation, voice cloning, dialogue creation, and other TTS operations through natural language in MCP-compatible AI assistants.15MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tungtuantran/gemini-tts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server