Skip to content
LangChain

clientvo tools for LangChain

com.clientvo/clientvo-tools

Clientvo: the monthly searches, read from search (a month), served as an agent-callable dataset...

client:LangChain transport:stdio runtime:npm

Install clientvo tools in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "clientvo-tools": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@ellul-estate/clientvo-com-clientvo-tools-mcp"],
        }
})

tools = await client.get_tools()

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

clientvo tools in other clients