Skip to content
LangChain

Phone Bud for LangChain

com.phone-bud/phone-bud

AI voice agents that make real phone calls: single calls or campaigns, with transcripts and notes.

client:LangChain transport:streamable-http

Install Phone Bud in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "phone-bud": {
            "transport": "streamable_http",
            "url": "https://www.phone-bud.com/mcp",
        }
})

tools = await client.get_tools()

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

Phone Bud in other clients