Brainiall Speech AI - MCP Server
MCP server providing AI-powered pronunciation assessment, speech-to-text, and text-to-speech tools via Brainiall Speech AI APIs.
Tools
| Tool | Description |
|---|---|
assess_pronunciation |
Score how accurately a speaker pronounced a given text (0-100), with per-word and phoneme-level feedback |
transcribe_speech |
Transcribe speech audio into text with automatic language detection |
synthesize_speech |
Convert text to natural-sounding speech audio (MP3) |
list_voices |
List all available text-to-speech voices |
Prerequisites
Get your free API key at app.brainiall.com.
Installation
Using pip
pip install fastmcp httpxUsing Docker
docker build -t brainiall-mcp .
docker run -e BRAINIALL_API_KEY=your-key -p 8000:8000 brainiall-mcpConfiguration
Set the BRAINIALL_API_KEY environment variable:
export BRAINIALL_API_KEY=your-api-keyClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"brainiall-speech-ai": {
"command": "fastmcp",
"args": ["run", "server.py"],
"env": {
"BRAINIALL_API_KEY": "your-api-key"
}
}
}
}





