Skip to content
LangChain

neuromcp for LangChain

io.github.adelelo13/neuromcp

Semantic memory for AI agents with hybrid search, knowledge graph, and consolidation

client:LangChain transport:stdio runtime:npm

Install neuromcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

neuromcp in other clients