Skip to content
LangChain

ASR (에사) — Shared memory for AI tools for LangChain

com.asrmemory/asr

Shared memory for AI tools — save notes and work records, recall them from any other tool.

client:LangChain transport:streamable-http

Install ASR (에사) — Shared memory for AI tools in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "asr": {
            "transport": "streamable_http",
            "url": "https://asrmemory.com/mcp",
        }
})

tools = await client.get_tools()

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

ASR (에사) — Shared memory for AI tools in other clients