Skip to content
LangChain

voice mcp for LangChain

io.github.forgemeshlabs/voice-mcp

Give Your Agent A Voice: x402 pay-per-call speech with 20 voices, 10 personas, 31 languages.

client:LangChain transport:stdio runtime:npm

Install voice mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "voice-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@forgemeshlabs/voice-mcp"],
        }
})

tools = await client.get_tools()

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

voice mcp in other clients