
Blabber-MCP
An MCP server that enables LLMs to generate spoken audio from text using OpenAI's Text-to-Speech API, supporting various voices, models, and audio formats.
README
<span style="color: #FF69B4;">📢 Blabber-MCP</span> <span style="color: #ADD8E6;">🗣️</span>
<span style="color: #90EE90;">An MCP server that gives your LLMs a voice using OpenAI's Text-to-Speech API!</span> 🔊
<span style="color: #FFD700;">✨ Features</span>
- Text-to-Speech: Converts input text into high-quality spoken audio.
- Voice Selection: Choose from various OpenAI voices (
alloy
,echo
,fable
,onyx
,nova
,shimmer
). - Model Selection: Use standard (
tts-1
) or high-definition (tts-1-hd
) models. - Format Options: Get audio output in
mp3
,opus
,aac
, orflac
. - File Saving: Saves the generated audio to a local file.
- Optional Playback: Automatically play the generated audio using a configurable system command.
- Configurable Defaults: Set a default voice via configuration.
<span style="color: #FFA07A;">🔧 Configuration</span>
To use this server, you need to add its configuration to your MCP client's settings file (e.g., mcp_settings.json
).
- Get OpenAI API Key: You need an API key from OpenAI.
- Add to MCP Settings: Add the following block to the
mcpServers
object in your settings file, replacing"YOUR_OPENAI_API_KEY"
with your actual key.
{
"mcpServers": {
"blabber-mcp": {
"command": "node",
"args": ["/full/path/to/blabber-mcp/build/index.js"], (IMPORTANT: Use the full, absolute path to the built index.js file)
"env": {
"OPENAI_API_KEY": "YOUR_OPENAI_API_KEY",
"AUDIO_PLAYER_COMMAND": "xdg-open", (Optional: Command to play audio (e.g., "cvlc", "vlc", "mpv", "ffplay", "afplay", "xdg-open"; defaults to "cvlc")
"DEFAULT_TTS_VOICE": "nova" (Optional: Set default voice (alloy, echo, fable, onyx, nova, shimmer); defaults to nova)
},
"disabled": false,
"alwaysAllow": []
}
}
}
<span style="color: #FF6347;">Important:</span> Make sure the args
path points to the correct location of the build/index.js
file within your blabber-mcp
project directory. Use the full absolute path.
<span style="color: #87CEEB;">🚀 Usage</span>
Once configured and running, you can use the text_to_speech
tool via your MCP client.
Tool: text_to_speech
Server: blabber-mcp
(or the key you used in the config)
Arguments:
input
(string, required): The text to synthesize.voice
(string, optional): The voice to use (alloy
,echo
,fable
,onyx
,nova
,shimmer
). Defaults to theDEFAULT_TTS_VOICE
set in config, ornova
.model
(string, optional): The model (tts-1
,tts-1-hd
). Defaults totts-1
.response_format
(string, optional): Audio format (mp3
,opus
,aac
,flac
). Defaults tomp3
.play
(boolean, optional): Set totrue
to automatically play the audio after saving. Defaults tofalse
.
Example Tool Call (with playback):
<use_mcp_tool>
<server_name>blabber-mcp</server_name>
<tool_name>text_to_speech</tool_name>
<arguments>
{
"input": "Hello from Blabber MCP!",
"voice": "shimmer",
"play": true
}
</arguments>
</use_mcp_tool>
Output:
The tool saves the audio file to the output/
directory within the blabber-mcp
project folder and returns a JSON response like this:
{
"message": "Audio saved successfully. Playback initiated using command: cvlc",
"filePath": "path/to/speech_1743908694848.mp3",
"format": "mp3",
"voiceUsed": "shimmer"
}
<span style="color: #98FB98;">📜 License</span>
This project is licensed under the MIT License - see the LICENSE file for details.
<span style="color: #BA55D3;">🕒 Changelog</span>
See the CHANGELOG.md file for details on version history.
<p align="center">Made with ❤️ by Pink Pixel</p>
Recommended Servers
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.
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.
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.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.