Skip to content
LangChain

Speech AI - Pronunciation, STT & TTS for LangChain

io.github.fasuizu-br/speech-ai

Pronunciation scoring, speech-to-text, and text-to-speech for language learning

client:LangChain transport:streamable-http tools:10

Install Speech AI - Pronunciation, STT & TTS in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "speech-ai": {
            "transport": "streamable_http",
            "url": "https://apim-ai-apis.azure-api.net/mcp/pronunciation/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

What LangChain can do once it is connected

Speech AI - Pronunciation, STT & TTS in other clients