Skip to content
LangChain

pipedrive for LangChain

io.usefulapi/pipedrive

Read deals, persons, organizations, activities and pipelines; create and update CRM records.

client:LangChain transport:streamable-http

Install pipedrive in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pipedrive": {
            "transport": "streamable_http",
            "url": "https://pipedrive.usefulapi.io/mcp",
        }
})

tools = await client.get_tools()

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

pipedrive in other clients