Skip to content
LangChain

audrey for LangChain

io.github.evilander/audrey

Local-first biological memory for coding agents: recall, consolidation, and pre-action Guard checks.

client:LangChain transport:stdio runtime:npm

Install audrey in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

audrey in other clients