Skip to content
LangChain

dialfetch for LangChain

com.dialfetch/dialfetch

Give your AI agent a phone: place calls, navigate IVRs, wait on hold, get structured answers.

client:LangChain transport:streamable-http

Install dialfetch in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

dialfetch in other clients