Skip to content
LangChain

DealMachine for LangChain

io.github.dealmachine/dealmachine

Search and enrich US property, owner, people, and company data for sales and lead generation.

client:LangChain transport:streamable-http

Install DealMachine in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

DealMachine in other clients