Skip to content
LangChain

VoiceLabs for LangChain

now.voicelabs/voicelabs

AI voice generation: text-to-speech and voice cloning from any MCP client.

client:LangChain transport:streamable-http

Install VoiceLabs in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "voicelabs": {
            "transport": "streamable_http",
            "url": "https://app.voicelabs.now/api/mcp",
        }
})

tools = await client.get_tools()

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

VoiceLabs in other clients