TTS toolkit built on Kokoro-82M with librosa audio enhancement, MCP server for Claude/Cursor, CLI & Python API. Free & open-source for YouTube creators.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"kokoro-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Text-to-Speech toolkit built on Kokoro-82M with audio enhancement, Model Context Protocol (MCP) server integration, CLI interface, and Docker deployment.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / entertainment
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Kokoro Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Text-to-Speech toolkit built on Kokoro-82M with audio enhancement, Model Context Protocol (MCP) server integration, CLI interface, and Docker deployment.
Beautiful web UI for managing all TTS functionality:
Install with: pip install -e ".[streamlit]" or pip install -e ".[complete]"
Quick Start:
python run_streamlit.py
# Opens at http://localhost:8501
📚 See STREAMLIT_README.md for complete Streamlit documentation.
What Kokoro-82M Provides Out-of-the-Box: Kokoro-82M is an exceptional open-weight TTS model that delivers: core neural TTS inference with 82M parameters, a basic Python inference library (KPipeline), 10 professional voice packs (male/female, American/British), phonemization (G2P) system, and raw 24kHz audio output with a 510-token processing limit per pass.
What aparsoft-tts Adds: We integrate Kokoro-82M's excellent TTS inference with comprehensive development tooling and workflow enhancements. This toolkit adds:
Audio Enhancement (librosa Integration):
This toolkit adds an audio processing pipeline on Kokoro generated TTS output:
# Without enhancement - raw Kokoro output
audio = kokoro_pipeline(text)
# With enhancement
audio = enhance_audio(
kokoro_output,
normalize=True, # Consistent volume
trim_silence=True, # Remove dead air
noise_reduction=True, # Spectral gating
add_fade=True # Smooth transitions
)
Result: Voiceovers ready for YouTube, podcasts, or content creation without additional audio editing.
**MCP Server In