agentic-recall for LangChain
io.github.dfrancislyondflabc-tech/agentic-recall
Long-term memory for agentic tasks. It tells you when it doesn't know.
client:LangChain
transport:stdio
runtime:npm
Install agentic-recall in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"agentic-recall": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "agentic-recall"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs