Skip to content
LangChain

neurohive for LangChain

io.github.adelelo13/neurohive

Multi-agent memory intelligence with expertise tracking and conflict detection

client:LangChain transport:stdio runtime:npm

Install neurohive in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "neurohive": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "neurohive"],
        }
})

tools = await client.get_tools()

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

neurohive in other clients