Skip to content
LangChain

ResearchZosho for LangChain

io.github.wyrdsekai/researchzosho

The research librarian for the rest of us: reads, keeps and questions your sources.

client:LangChain transport:stdio runtime:npm

Install ResearchZosho in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ResearchZosho in other clients