Skip to content
LangChain

leadpipe for LangChain

io.github.leadpipe-com/leadpipe

Official MCP server for Leadpipe intent and data APIs.

client:LangChain transport:stdio runtime:npm

Install leadpipe in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

leadpipe in other clients