memory pulse for LangChain
io.github.t-crew/memory-pulse
Corrections that outlive the session. A guard blocks the edit that writes the old value back.
client:LangChain
transport:stdio
runtime:npm
Install memory pulse in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"memory-pulse": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "memory-pulse"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs