Verified Repo Memory for LangChain
io.github.cognitivemyriad/verified-repo-memory
Stale-proof repository memory with citations + just-in-time verification + TTL (repo-scoped).
client:LangChain
transport:stdio
runtime:npm
Install Verified Repo Memory in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"verified-repo-memory": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@cognitivemyriad/vrm-local"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs