Overview
MCP TTS Say is a tool that converts text to speech using the MCP server, allowing users to play audio locally with high-quality synthesis powered by OpenAI's TTS SDK.
To use MCP TTS Say, clone the repository, install the dependencies, set up your OpenAI API key in the environment file, and run the application in development mode.
- Text-to-speech synthesis using OpenAI TTS SDK - Local audio playback - Easy integration with MCP server for seamless audio playback
- Converting written content into spoken audio for accessibility.
- Creating audio versions of documents or articles.
- Developing applications that require voice output from text input.
Add to your AI client
Use these steps to connect MCP TTS Say in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-tts-say-hirokidaichi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tts-say-hirokidaichi"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-tts-say-hirokidaichi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tts-say-hirokidaichi"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-tts-say-hirokidaichi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tts-say-hirokidaichi"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-tts-say-hirokidaichi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tts-say-hirokidaichi"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-tts-say-hirokidaichi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tts-say-hirokidaichi"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-tts-say-hirokidaichi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tts-say-hirokidaichi"
]
}
}
}FAQ
What are the system requirements?
You need Node.js (v18 or higher) and an OpenAI API key to use this tool.
Is there a license for MCP TTS Say?
Yes, it is licensed under the MIT License.
How can I contribute to the project?
You can fork the repository, create a new branch, make changes, and submit a pull request.