Stats
Actions
Tags
From claude-soma
Runs a local text-to-speech (TTS) server using Piper via the Hermes framework. Provides voice output capabilities to Claude using specified voice models.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"voice-tts": {
"command": "/opt/claude-soma/.venv/bin/python",
"args": [
"-m",
"claude_soma.mcp_servers.voice_tts.server"
],
"env": {
"HERMES_PIPER_BIN": "/opt/piper/piper",
"HERMES_PIPER_DEFAULT_VOICE": "/opt/piper/en_US-ryan-medium.onnx"
}
}
}
}Server configuration and connection parameters
/opt/claude-soma/.venv/bin/pythonCommand-line arguments passed to the server process
Environment variables set when the server starts
HERMES_PIPER_BIN=/opt/piper/piperHERMES_PIPER_DEFAULT_VOICE=/opt/piper/en_US-ryan-medium.onnxnpx claudepluginhub techfreakworm/claude-soma