MemoryRouter for LangChain
ai.memoryrouter/memoryrouter
Persistent AI memory shared across Claude, ChatGPT, coding agents, and compatible MCP clients.
client:LangChain
transport:streamable-http
tools:10
Install MemoryRouter in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"memoryrouter": {
"transport": "streamable_http",
"url": "https://mcp.memoryrouter.ai/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs